self.onError=null;
currentX = currentY = 0;
whichIt = null;
lastScrollX = 0; lastScrollY = 0;
action = window.setInterval("heartBeat()",1);


function heartBeat() {

        diffY = document.body.scrollTop;
        diffX = 0;
        if (diffY != lastScrollY) {
                percent = .2 * (diffY - lastScrollY);
                if (percent > 0) {
                        percent = Math.ceil(percent);
                } else {
                        percent = Math.floor(percent);
                }
                document.all.layer_right.style.pixelTop += percent;
                lastScrollY = lastScrollY + percent;
        }
        if (diffX != lastScrollX) {
                percent = .2 * (diffX - lastScrollX);
                if (percent > 0) {
                        percent = Math.ceil(percent);
                } else {
                        percent = Math.floor(percent);
                }
                document.all.layer_right.style.pixelLeft += percent;
                lastScrollY = lastScrollY + percent;
        }
}
//-->

document.write("\
<div id='layer_right' style='position:absolute;left:960px;top:372px;width:38px;height:92px;z-index:10;visibility:visible;background:url(http://www.pixdix.com/image/common/topbg.gif) no-repeat'><a href='#'><img src='/image/common/top.gif' style='margin-top:77'></a></div>\
");