//SaveElementScroll script by Wesley Bakker
function SSE(id){var self=this;this.E=document.getElementById(id);this.E['onscroll']=function(){self.SS()};this.E['onclick']=function(){self.SS()};this.E['onkeypress']=function(){self.SS()};this.X=document.getElementsByName('__'+id+'ScrollPosX').item(0);this.Y=document.getElementsByName('__'+id+'ScrollPosY').item(0);this.RS();}
SSE.prototype.SS=function(){this.X.value=this.E.scrollLeft;this.Y.value=this.E.scrollTop;} 
SSE.prototype.RS=function(){this.E.scrollLeft=this.X.value;this.E.scrollTop=this.Y.value;}