
if (!document.layers)
document.write('<div id="Floater" style="position:absolute">')
document.write('<layer id="Floater">');
document.write('<table border="0" cellspacing="0" cellpadding="0" width="100"><tr><td>');
document.write('<a href="#top"><img src="picts/arrow-topoff.gif" border="0" alt="Top of Page" hspace="0" vspace="12"></a>');
document.write('</td></tr><tr><td align="left" valign="center" class="menulinks">');
document.write('<a href="#top" class="menu">Top</a><br>');
document.write('</td></tr><tr><td align="left" valign="center" class="menulinks">');
document.write('<a href="index.htm" class="menu">Home</a><br>');
document.write('</td></tr><tr><td align="left" valign="center" class="menulinks">');
document.write('<a href="contact.htm" class="menu">Contact Us</a><br>');
document.write('</td></tr></table>');
document.write('</layer>');
if (!document.layers)
document.write('</div>')

function JSFX_FloatTopDiv()
{
	var placeX = 30,
	placeY = 112;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	var d = document;
	function DeLayer(id)
	{
		var GetElements=d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
		if(d.layers)GetElements.style=GetElements;
		GetElements.sP=function(x,y){this.style.left=x;this.style.top=y;};
		GetElements.x = placeX;
		GetElements.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		GetElements.y -= placeY;
		return GetElements;
	}
	window.stayTopLeft=function()
	{
		var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		ftlObj.y += (pY - placeY - ftlObj.y)/15;
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("stayTopLeft()", 10);
	}
	ftlObj = DeLayer("Floater");
	stayTopLeft();
}
JSFX_FloatTopDiv();