        
        
        
		function ScrollIt(){
				//alert(document.Form1.PageX.value + ',' + document.Form1.PageY.value);
				
				window.scrollTo(document.getElementById(naming_container + "PageX").value, document.getElementById(naming_container + "PageY").value);
				//alert("set");
			}
		function setcoords(){
			
			var myPageX;
			var myPageY;
			
			
			
            
            
			if (document.documentElement && document.documentElement.scrollTop)
			{// IE6 +4.01 and user has scrolled
				
				myPageX = document.documentElement.scrollLeft
				myPageY = document.documentElement.scrollTop
				
			}
			else if (document.body && document.body.scrollTop)
			{
				myPageX = document.body.scrollLeft;
				myPageY = document.body.scrollTop;
				
			}
			else if (window.pageYOffset){
				myPageX = window.pageXOffset;
				myPageY = window.pageYOffset;
				
			}
            //alert("entered");

				document.getElementById(naming_container + "PageX").value = myPageX;
				document.getElementById(naming_container + "PageY").value = myPageY;
			
			
			//alert("scroller:" + document.getElementById("PageX").value + ", y value: " + document.getElementById("PageY").value);
			
                
				

			}