//QQ在线客服
document.write('<div style="width:52px; height:100px; position:absolute; right: 0px; " id="img"><a href=http://wpa.qq.com/msgrd?V=1&Uin=938007479&Site=www.0371accp.com&Menu=yes target="_blank"><IMG SRC="../img/main/qq.gif" WIDTH=52 HEIGHT=100 ALT="北大青鸟郑州鸿博在线QQ咨询"></a></div>');
//让QQ跟随窗口移动
function move(){

	var scrollPos; 
	if (typeof window.pageYOffset != 'undefined') { 
	   scrollPos = window.pageYOffset; 
	} 
	else if (typeof document.compatMode != 'undefined' && 
		 document.compatMode != 'BackCompat') { 
	   scrollPos = document.documentElement.scrollTop; 
	} 
	else if (typeof document.body != 'undefined') { 
	   scrollPos = document.body.scrollTop; 
	} 
	
   document.getElementById("img").style.pixelTop = scrollPos;
   document.getElementById("img").style.pixelLeft =document.body.offsetWidth - document.getElementById("img").offsetWidth - document.body.scrollLeft;
}
window.onscroll = move;
window.onresize = move;

