
function topright() 
{ 
window.setInterval("displaytopright()",20); 
} 

function displaytopright() 
{ 
var theTop; 
var theRight; 
if (document.documentElement && document.documentElement.scrollTop) 
{ 
theRight = document.documentElement.scrollRight; 
theTop = document.documentElement.scrollTop; 
} 
else 
{ 
theRight = document.body.scrollRight; 
theTop = document.body.scrollTop; 
}  
floater.style.pixelTop = theTop + 140 ; 
} 
topright(); 

function close_float_right(){
	floater.style.visibility='hidden';
}

