<!-- ********************************************************* -->
<!-- * You may use this code for free on any web page provided that  --->
<!-- * these comment lines and the following credit remain in the code. --->
<!-- * TopLeft Floating Div from http://www.javascript-fx.com --->
<!-- ********************************************************  -->

function JSFX_FloatTopLeft(posy)
{
	var startX = 0, startY = posy;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d = document;
	var px = document.layers ? "" : "px";
	function ml(id)
	{
		var el=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
		if(d.layers)el.style=el;
		el.sP=function(x,y){this.style.left=x+px;this.style.top=y+px;};
		el.x = startX; el.y = startY;
		return el;
	}
	window.stayTopLeft=function()
	{
		var pY = ns ? pageYOffset : document.documentElement && document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
		var dY = (pY > startY) ? pY : startY;
		ftlObj.y += (dY - ftlObj.y)/4;
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 20);
	}
	ftlObj = ml("divStayTopLeft");
	stayTopLeft();
}

<!-- End Script  -->
<!-- ********************************************************  -->