﻿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("rightDiv").style.top = parseInt(document.getElementById("rightDiv").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
//下面这段删除后，对联将不跟随屏幕而移动。
window.setInterval("heartBeat()",1);
//-->
//关闭按钮
function close_right2(){
    rightDiv.style.visibility='hidden';
}
//显示样式
document.writeln("<style type=\"text\/css\">");
document.writeln("#rightDiv{width:100px;height:138px; position:absolute; text-align:left; overflow:hidden;}");
document.writeln(".itemFloat{width:100px;height:130px; text-align:center; margin:0px auto 0px auto;}");

document.writeln(".itemFloat1{text-align:right; }");

document.writeln("<\/style>");
//以下为主要内容

document.writeln("<div id=\"rightDiv\" style=\"top:100px;right:5px\">");
//------右侧各块结束

document.writeln("<div id=\"right1\" class=\"itemFloat1\">");
document.writeln("<a href=\"javascript:close_right2();\" title=\"关闭在线客服\"><img border=0 src=\"images/kf/x.gif\" alt=\"关闭在线客服\" title=\"关闭在线客服\"><\/a>");
document.writeln("<\/div>");

//---R2
document.writeln("<div id=\"right2\" class=\"itemFloat\">");
document.writeln("<a target=_blank href=\"http://wpa.qq.com/msgrd?v=3&uin=354479597&site=qq&menu=yes\"><img border=0 src=\"http://wpa.qq.com/pa?p=2:354479597:49\" alt=\"点击这里给我发消息\" title=\"点击这里给我发消息\"></a><br />");
document.writeln("<a target=_blank href=\"http://wpa.qq.com/msgrd?v=3&uin=944764694&site=qq&menu=yes\"><img border=0 src=\"http://wpa.qq.com/pa?p=2:944764694:49\" alt=\"点击这里给我发消息\" title=\"点击这里给我发消息\"></a><br />");
document.writeln("<a target=_blank href=\"http://wpa.qq.com/msgrd?v=3&uin=1002196462&site=qq&menu=yes\"><img border=0 src=\"http://wpa.qq.com/pa?p=2:1002196462:49\" alt=\"点击这里给我发消息\" title=\"点击这里给我发消息\"></a>");
document.writeln("<\/div>");


//------右侧各块结束
document.writeln("<\/div>");
