	document.write('<div id="con" style=\'position:absolute;top:350px;left:0px;width:151px;height:300px;\'><span style=\'display:block;point:cursor\' onclick=\'document.getElementById("con").style.display="none"\'>¹Ø±Õ</span><div style=\'width:151px;height:206px;padding-top:72px;background:url(images/ad.gif);\'><a href=\'feedback.php\'></a><a href=\'show.php?Id=664\'></a><a href=\'show.php?Id=790\'></a></div></div>');

function MoveAD()
{
	var top;
	if (document.documentElement && document.documentElement.offsetHeight)
	  top = document.documentElement.offsetHeight -340;
	else if (document.body)
	  top = document.body.offsetHeight -340;
	else
	 {/*Netscape stuff*/}
	 
	document.getElementById('con').style.top = top;
}
MoveAD();

function Closed()
{
	document.getElementById('con').style.display = "none";
}

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*/}
	  
	percent=(diffY-lastScrollY)/10; 
	if(percent>0)percent=Math.ceil(percent); 
	else percent=Math.floor(percent); 
	document.getElementById("con").style.top=parseInt(document.getElementById("con").style.top)+percent+"px";
	lastScrollY=lastScrollY+percent; 
}
window.setInterval("heartBeat()",1);


