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("leftDiv").style.top = parseInt(document.getElementById("leftDiv").style.top)+percent+"px";
document.getElementById("rightDiv").style.top = parseInt(document.getElementById("rightDiv").style.top)+percent+"px";
document.getElementById("rightDiv2").style.top = parseInt(document.getElementById("rightDiv2").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
//alert(lastScrollY);
}
//下面这段删除后，对联将不跟随屏幕而移动。
window.setInterval("heartBeat()",1);
//-->
//关闭按钮
function close_left1(){
    left1.style.visibility='hidden';
}
function close_left2(){
    left2.style.visibility='hidden';
}
function close_right1(){
    right1.style.visibility='hidden';
	right2.style.visibility='';
}
function open_right1(){
    right1.style.visibility='';
	right2.style.visibility='hidden';
}
//显示样式
document.writeln("<style type=\"text\/css\">");
document.writeln("#leftDiv,#rightDiv,#rightDiv2{width:143px;height:100px;position:absolute;}");
document.writeln(".itemFloat{width:143px;height:auto;line-height:5px}");
document.writeln("<\/style>");
//以下为主要内容

document.writeln("<div id=\"rightDiv\" style=\"top:448px;right:3px\">");
//------右侧各块开始
//---R1
document.writeln("<div id=\"right1\" class=\"itemFloat\">");
document.writeln("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
document.writeln("  <tr>");
document.writeln("    <td><a href=\"javascript:close_right1();\"><IMG src=\"image\/x.gif\"  border=0><\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td><a href=\"tencent:\/\/message\/?uin=2281347880&Site=在线咨询&Menu=yes&Service=300&sigT=45a1e5847943b64c6ff3990f8a9e644d2b31356cb0b4ac6b24663a3c8dd0f8aa12a595b1714f9d45\" target=blank\/><IMG  src=\"image\/qq1.jpg\"  border=0><\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("  <tr>");
document.writeln("    <td><a href=\"msnim:chat?contact=itscc2011@hotmail.com\" target=blank\/><IMG  src=\"image\/qq2.jpg\"  border=0><\/a><\/td>");
document.writeln("  <\/tr>");
document.writeln("<\/table>");
document.writeln("<\/div>");
//------右侧各块结束
document.writeln("<\/div>");
document.writeln("<div id=\"rightDiv2\" style=\"top:488px;right:3px;\">");

document.writeln("<\/div>");

