function ScrollIt(pX,pY)
{
	//alert(document.getElementById(pX).value);
	//alert(document.getElementById(pY).value);
	window.scrollTo(document.getElementById(pX).value, 
					document.getElementById(pY).value);
}

function setcoords(pX,pY)
{
	var myPageX;
	var myPageY;


	
	if (document.all)
	{
		myPageX = document.body.scrollLeft;
		myPageY = document.body.scrollTop;
	}
	else
	{
		myPageX = window.pageXOffset;
		myPageY = window.pageYOffset;
	}

	
	document.getElementById(pX).value = myPageX;
	document.getElementById(pY).value = myPageY;
}
