var mouseX = mouseY =0;//returns height, width and other window information//works in NS6 and IE5(Mac/Win)function screenObject()	{	this.bottom = function(){		if (document.body.scrollHeight) return document.body.scrollHeight};		this.height = function() {		if (document.body.offsetHeight) return document.body.offsetHeight;}		this.visHeight = function() {		if (window.innerHeight) return window.innerHeight;		if (document.body.clientHeight) return document.body.clientHeight;}		this.width = function() {		if (document.body.offsetWidth) return document.body.offsetWidth;}		this.scrollTop = function() {		if(document.body.scrollTop) return document.body.scrollTop		if (window.pageYOffset) return window.pageYOffset;		else return 0;};	}function mousePosition(e)	{	if (e) event = e;   //for Netscape	mouseX = event.clientX;	mouseY = event.clientY;	}	//resize the clippings container	function windowResize()	{	clippingsSetContainerHeight()	}