﻿ 
 
document.write('<div id="shownav1" style="position:absolute;z-index:9998; top:270px; left:' + (document.documentElement.clientWidth - 100) +'px; width:107px; height:170px; background:url(images/qqback.gif) no-repeat; padding-top:65px;z-index:5; padding-left:10px;display:;font-size:12px;text-align:left;"></div>');
var tips1; 
 
var old1 = theTop;
initFloatTips1();
function initFloatTips1() 
{
	tips1 = document.getElementById('shownav1');
	moveTips1();
}

function moveTips1() 
{
	var tt=10;
	if (window.innerHeight) 
	{
		pos1 = window.pageYOffset;
 	}
	else if (document.documentElement && document.documentElement.scrollTop) 
	{
		pos1 = document.documentElement.scrollTop;
	}
	else if (document.body) 
	{
    	pos1 = document.body.scrollTop;
	}
	pos1=pos1-tips1.offsetTop+theTop;
	pos1=tips1.offsetTop+pos1/10;
	if (pos1 < theTop) pos1 = theTop;
	if (pos1 != old1) 
	{
		tips1.style.top = pos1+"px";
                tips1.style.left=document.documentElement.clientWidth-100+"px";
		tt=10;
	}
	old1 = pos1;
	setTimeout(moveTips1,tt);
}
 