﻿lastScrollY = 0;
function heartBeat() {
    var diffY;
    if (document.documentElement && document.documentElement.scrollTop)
        diffY = document.documentElement.scrollTop;
    else if (document.body)
        diffY = document.body.scrollTop
    else
    { /*Netscape stuff*/ }

    //alert(diffY);
    percent = .1 * (diffY - lastScrollY);
    if (percent > 0) percent = Math.ceil(percent);
    else percent = Math.floor(percent); 
    document.getElementById("fl2").style.top = parseInt(document.getElementById("fl2").style.top) + percent + "px";

    lastScrollY = lastScrollY + percent;
    //alert(lastScrollY);
}
//tstr = '<div class="imlist"><a href="http://wpa.qq.com/msgrd?V=1&Uin=634101380&Site=www.82005556.com&Menu=yes" target="_blank">&nbsp;</a></div>';
tstr = '<div class="imlist"><div class="r1"><img src="images/im_01.gif" alt="" /></div><div class="r2"><a href="http://wpa.qq.com/msgrd?V=1&Uin=634101380&Site=www.82005556.com&Menu=yes" target="_blank"><img src="images/im_02.gif" border="0" alt="" /></a></div><div class="r3"><a href="http://wpa.qq.com/msgrd?V=1&Uin=1208593472&Site=www.82005556.com&Menu=yes" target="_blank"><img src="images/im_03.gif" border="0" alt="" /></a></div></div>';
suspendcode14 = "<div id='fl2' style='right:10px;POSITION:absolute;TOP:150px;'>" + tstr + "</div>";
document.write(suspendcode14);
window.setInterval("heartBeat()", 1);
