<!-- Start

// NOTE: If you use a ' add a slash before it like this \'

//Check cookies to see what menu to produce
function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=")
  if (c_start!=-1)
    { 
    c_start=c_start + c_name.length+1 
    c_end=document.cookie.indexOf(";",c_start)
    if (c_end==-1) c_end=document.cookie.length
    return unescape(document.cookie.substring(c_start,c_end))
    } 
  }
return ""
}
username=getCookie('User')



// FLOATING MENU AREA - SEE NOTE BELOW FOR MOVING THE MENU UP ON THE PAGE


if (!document.layers)
document.write('<div id="Floater" style="position:absolute">')
document.write('<layer id="Floater">');


// START THE IMAGE LINKS COPY ANY ONE OF THESE 3 LINES TO ADD A NEW LINK


if (username!=null && username!="")
  {
	//admin menu

	document.write('<a href="index.html"><img src="picts/float3-home2.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="#" onClick="window.open(\'http://www.beaconboatloans.com/login.htm\',\'Login\', \'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=300,height=300, left=500, top=400  \' );"><img alt="Login" src="picts/logon.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="index.html?function=page_list"><img alt="Page Manager" src="picts/float_add_page.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="index.html?function=file_list"><img alt="Uploader Manager" src="picts/float_uploader.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="index.html?function=QA_list"><img alt="Q and A FAQ Manager" src="picts/float_notes_manager.gif" border="0" vspace="1"></a><br>');

//	document.write('<a href="index.html?function=contact_manager"><img alt="Contact Manager" src="picts/float_contact_manager.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="#top"><img src="picts/float3-top2.gif" border="0" vspace="1"></a><br>');

}else{
	//visitor menu
	document.write('<a href="index.html"><img src="picts/float_home.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="index.html?page=33"><img src="picts/float_quote.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="index.html?page=32"><img src="picts/float_apply.gif" border="0" vspace="1"></a><br>');

	document.write('<a href="#top"><img src="picts/float3-top2.gif" border="0" vspace="1"></a><br>');
}




document.write('</layer>');




// COPYRIGHT 2006 © Allwebco Design Corporation




// NOTE: If you add links you will need to alter the "placeY" 275 number below


if (!document.layers)
document.write('</div>')

function FloatMenu()
{
	var Xloc = 0,
	Yloc = 450;
	var ns = (navigator.appName.indexOf("Netscape") != -1);
	function SetMenu(id)
	{
		var GetElements=document.getElementById?document.getElementById(id):document.all?document.all[id]:document.layers[id];
		if(document.layers)GetElements.style=GetElements;
		GetElements.sP=function(x,y){this.style.right=x;this.style.top=y;};
		GetElements.x = Xloc;
		GetElements.y = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		GetElements.y -= Yloc;
		return GetElements;
	}
	window.LoCate_XY=function()
	{
		var pY = ns ? pageYOffset + innerHeight : document.body.scrollTop + document.body.clientHeight;
		ftlObj.y += (pY - Yloc - ftlObj.y)/15;
		ftlObj.sP(ftlObj.x, ftlObj.y);
		setTimeout("LoCate_XY()", 10);
	}
	ftlObj = SetMenu("Floater");
	LoCate_XY();
}
FloatMenu();


//  End -->