function checksite_floater()
{
	var startX = 530, startY = 310;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d = document;
	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)/8;
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 20);
	}
	ftlObj = ml("divStayTopRight");
	stayTopLeft();
}

var myHeight;

if (window.innerWidth)
//document.write(window.innerWidth+" by "+window.innerHeight)
  myHeight = window.innerHeight;
//else if browser supports document.all (IE 4+)
else if (document.all)
//document.write(document.body.clientWidth+" by "+document.body.clientHeight)
  myHeight = document.body.clientHeight;

  //document.write("myHeight = ["+myHeight+"]")
  
if (myHeight > 750)
  checksite_floater();
