    var isIE = document.all;
	var isNav = document.layers;

	function currWidth() {
		var currWidth = document.body.clientWidth;
		var startX = ( (currWidth - 700) > 0 ) ? (currWidth - 700)/2  : ( (isIE) ? 10 : 8 );
		return (startX);
	}

	function getHeight() {
	    var currHeight;
	    if (isIE) {
			currHeight = document.body.clientHeight;
		}
	    else {
			currHeight =  window.innerHeight
		}
		return (currHeight)
    }


	/*
	Floating Menu script-  Roy Whittle (http://www.javascript-fx.com/)
	Script featured on/available at http://www.dynamicdrive.com/
	This notice must stay intact for use
	*/

	function JSFX_FloatTopDiv(startY)
	{
		var startX = currWidth()-30; //30,
		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;this.style.top=y;};
			el.x = startX;
			el.y = startY;
			return el;
		}
		window.stayTopLeft=function()
		{
			var pY = ns ? pageYOffset : document.body.scrollTop;
			ftlObj.y += (pY - ftlObj.y)/8; //(pY + startY - ftlObj.y)

			if ( pY > startY ) {
				ftlObj.sP(ftlObj.x, ftlObj.y);
			}
			else {
				ftlObj.sP(startX, startY);
			}

			setTimeout("stayTopLeft()", 10);
		}
		ftlObj = ml("divStayTopLeft");
		stayTopLeft();
	}
	//JSFX_FloatTopDiv();
