var y1 = 5;   // change the # on the left to adjuct the Y co-ordinate
(document.getElementById) ? dom = true : dom = false;

function placeIt() 
{
	
	
	if (dom && !document.all) 
	{
		elemById("dvstay").style.top = 100//window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))
	}
	if (document.layers) 
	{
		elemById["dvstay"].top = 0//window.pageYOffset + (window.innerHeight - (window.innerHeight-y1))
	}
	if (document.all) 
	{
		document.all["dvstay"].style.top = document.body.scrollTop + (document.body.clientHeight - (document.body.clientHeight-y1));
		
	}
	//window.setTimeout("placeIt()", 10); 
}
