var xV = 0;
var mSeconds = 0;

function stayHome()
{
	nV = document.body.scrollTop;
	document.getElementById('isFloat').style.top = xV+nV;
}

function init()
{
	xV = document.getElementById('isFloat').offsetTop;
	document.getElementById('isFloat').style.visibility = 'visible';
	if (document.getElementById) {var obj = document.getElementById('isFloat').style; obj.visibility = 'visible'}
	if (document.layers) document.layers['isFloat'].display = ''
	else if (document.all) document.all['isFloat'].style.display = ''
	else if (document.getElementById) document.getElementById('isFloat').style.display = ''
	window.setTimeout(closeFloat, mSeconds);
}
function closeFloat()
{
	document.getElementById('isFloat').innerHTML = '';
}
window.onscroll=stayHome;