ScrollTop=285	//与页面顶部的距离
ScrollLeft=screen.width/2+400;	//与页面左边的距离

function LoadQQService()
{
	ScrollObj=document.getElementById('QQService');
	
	if(window.screen.width<=800)
		ScrollObj.style.display="none";
	if(window.screen.width>1024)
		ScrollObj.style.left=ScrollLeft+70;
	
	QQService.style.top=document.documentElement.scrollTop+ScrollTop;
	setTimeout("LoadQQService();",50)
}

document.write("<div id='QQService' style='position:absolute;width:87px;left:"+ScrollLeft+"px;visibility:visible;z-index:100'>");
document.write("<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr><td><img src='/images/qq_top.gif'></td></tr>");

document.write("<tr height='100' align=center><td background='/images/qq_bg.gif'><a href='msnim:chat?contact=yutou40@hotmail.com'><img src='/images/msn.jpg' border='0'></a></td></tr>");

document.write("<tr><td background='/images/qq_bot.gif' height='9' align='center'></td></tr></table>");
document.write("</div>");

LoadQQService();