﻿<!--
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("rightFloatDiv").style.top = parseInt(document.getElementById("rightFloatDiv").style.top)+percent+"px";
    lastScrollY=lastScrollY+percent;
    //alert(lastScrollY);
}
//下面这段删除后，对联将不跟随屏幕而移动。
window.setInterval("heartBeat()",1);
//-->
//关闭按钮
function hiddenBottom(){
	Bt1.style.display='block';
    Bt2.style.display='none';
}
//显示按钮
function hiddenTop(){
    Bt1.style.display='none';
	Bt2.style.display='block';
}
//显示样式
document.writeln("<style type=\"text\/css\">");
document.writeln("#rightFloatDiv{width:136px;position:absolute;z-index:9999;}");
document.writeln("<\/style>");
//以下为主要内容

//------右侧各块开始
document.writeln("<div id=\"rightFloatDiv\" style=\"top:100px;right:2px\">");
//---R1
var strContent="<table width='136' border='0' cellspacing='0' cellpadding='0' id='Bt1' style='display:none;'>";
strContent+="<tr>";
strContent+="<td align='right' width='136'><a href='javascript:hiddenTop();'><img src='FloatService/Images/5.gif' border=0  /></a></td>";
strContent+="</tr>";
strContent+="</table>";

strContent+="<table width='136' border='0' cellspacing='0' cellpadding='0' id='Bt2'>";
strContent+="<tr>";
strContent+="<td>";	
strContent+="<table width='100%'  border='0' cellspacing='0' cellpadding='0'>";
strContent+="<tr><td><img src='FloatService/Images/1.gif' /></td></tr>";
strContent+="<tr><td style='background:url(FloatService/Images/3.gif) repeat-y;' align='center'><br>※成都<br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=345747453&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:345747453:4\" alt=\"给我发消息\">345747453</a><br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=1367735915&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:1367735915:4\" alt=\"给我发消息\">1367735915</a><br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=772660311&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:772660311:4\" alt=\"给我发消息\">772660311</a><br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=1532701230&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:1532701230:4\" alt=\"给我发消息\">1532701230</a><br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=345038373&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:345038373:4\" alt=\"给我发消息\">345038373</a><br><br>※重庆<br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=806178613&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:806178613:4\" alt=\"给我发消息\">806178613</a><br><br><a target=\"_blank\" href=\"http://wpa.qq.com/msgrd?V=1&Uin=1123645724&Exe=QQ&Site=青田家私&Menu=yes\"><img border=\"0\" src=\"http://wpa.qq.com/pa?p=1:1123645724:4\" alt=\"给我发消息\">1123645724</a><br><br></td></tr>";
strContent+="<tr><td style='height:26px;background-color:#DCDCDC;color:#ED1B23;'><b>&nbsp;&nbsp;服务热线</b></td></tr>";
strContent+="<tr><td style='background:url(FloatService/Images/3.gif) repeat-y;' align='center'><br>[成都] 800-8868997<br>[重庆] 4006369990<br>023-86896199<br>023-86896177</td></tr>";
strContent+="<tr><td style='background:url(FloatService/Images/3.gif) repeat-y;' align='center'><br><br><a href='javascript:hiddenBottom();'>关闭客服窗口</a></td></tr>";
strContent+="<tr><td><img src='FloatService/Images/4.gif' /></td></tr>";
strContent+="</table>";
strContent+="</td>";
strContent+="</tr>";
strContent+="</table>";

	//右面
document.writeln(strContent);

document.writeln("<\/div>");
//------右侧各块结束

