	function ScrollIt()
	{
		//alert (document.Form1.PageY.value);
		//alert(document.Form1.PageY.value);
		window.scrollTo(document.Form1.PageX.value, document.Form1.PageY.value);
    }
	function Setcoords()
	{
		var myPageX;
		var myPageY;
		if (document.all)
		{
			myPageX = document.body.scrollLeft;
			myPageY = document.body.scrollTop;
		}
		else
		{
			myPageX = window.pageXOffset;
			myPageY = window.pageYOffset;
		}
		document.Form1.PageX.value = myPageX;
		document.Form1.PageY.value = myPageY;
		
		//alert (document.Form1.PageX.value);
    }
