x = 20;
y = 70;
function setVisible(help)
{
	help= document.getElementById(help);
	help.style.visibility = (help.style.visibility == 'visible') ? 'hidden' : 'visible';
}
function placeIt(help)
{
	help= document.getElementById(help);
	if (document.documentElement)
	{
		theLeft = document.documentElement.scrollLeft;
		theTop = document.documentElement.scrollTop;
	}
	else if (document.body)
	{
		theLeft = document.body.scrollLeft;
		theTop = document.body.scrollTop;
	}
	theLeft += x;
	theTop += y;
	help.style.left = theLeft + "px";
	help.style.top = theTop + "px" ;
	setTimeout("placeIt('layer1')",500);
}

//window.onscroll = setTimeout("placeIt('layer1')",500);
