function FixScreen(obj){
diffY=document.documentElement.scrollTop;
percent=(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
obj.style.pixelTop+=percent;
lastScrollY=lastScrollY+percent;
}
