<!-- Start



// NOTE: If you use a ' add a slash before it like this \'



// FLOATING MENU AREA - SEE NOTE BELOW FOR MOVING THE MENU UP ON THE PAGE





if (!document.layers)

document.write('<div id="FloaterL" style="position:absolute">')



document.write('<layer id="FloaterL">');

document.write('<table border="0" cellspacing="0" cellpadding="0" width="150"><tr><td>');

document.write('<a href="#back" class="menu">^ Top</a>');

document.write('</td></tr><tr><td>');

document.write('<a href="index.php" class="menu">Home</a>');

document.write('</td></tr><tr><td>');

document.write('<a href="contactus.php" class="menu">Contact Us</a>');

document.write('</td></tr><tr><td>');

document.write('<a href="javascript: history.back()" class="menu">< Back</a>');

document.write('</td></tr>');

document.write('</table>');

document.write('</layer>');





// NOTE: If you add links you will need to alter the "placeY" 82 number below





if (!document.layers)

document.write('</div>')



function JSFX_FloatTopDivR()

{

var len=window.screen.availWidth;

var myX= len-122;

	//var placeX = len-130,	placeY = 160;

	var placeX = 30,	placeY = 100; //placeY = 160; 

	var ns = (navigator.appName.indexOf("Netscape") != -1);

	var d = document;

	function DeLayerR(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 = DeLayerR("FloaterL");

	stayTopLeft();

}

JSFX_FloatTopDivR();





//  End -->