<!-- 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="Floater" style="position:absolute">')
document.write('<layer id="Floater">');


// START THE IMAGE LINKS COPY ANY ONE OF THESE LINES (EXCEPT THE FLOATER) TO ADD A NEW LINK

document.write('<a href="javascript:toggleLayer(\'Floater\');"><img src="picts/close.gif" width="21" height="13" border="0"></a><br>');

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

document.write('<a href="adeptinchange.htm"><img src="picts/float2-training.gif" border="0" vspace="1"></a><br>');

document.write('<a href="contact.htm"><img src="picts/float-contactsmall.gif" border="0" vspace="1"></a><br>');

document.write('<a href="site_map.htm"><img src="picts/float-map2.gif" border="0" vspace="1"></a><br>');

document.write('<a href="#top"><img src="picts/float-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 = 295;
	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();




function toggleLayer( whichLayer )
{
  var elem, vis;
  if( document.getElementById )
    elem = document.getElementById( whichLayer );
  else if( document.all )
      elem = document.all[whichLayer];
  else if( document.layers )
    elem = document.layers[whichLayer];
  vis = elem.style;
  
  if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
    vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
  vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}



//  End -->
