// JavaScript Document
<!--
function scrollToPosition(theElement){  
//var theElement = document.formName.elementName; // or document.getElementById("idName")  
elemPosX = theElement.offsetLeft  
elemPosY = theElement.offsetTop;  
theElement = theElement.offsetParent;  
while(theElement != null){  
elemPosX += theElement.offsetLeft   
elemPosY += theElement.offsetTop;  
theElement = theElement.offsetParent;  
}  
window.scrollTo(elemPosX ,elemPosY);  
}  
-->
