function ScrollIt(){
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;
}
