//NETSCAPE Resize Fix Code
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//NETSCAPE Resize Fix Code End

/////////////////////////////////////////////////////////////////////////////////////////


//DROPDOWN Menu Code
//set up browser specific layer objects
var isIE, isNS, isNS6, isDOM, objBegin, sobjEnd, vis, invis;
	if (document.all) {isIE= true;objBegin="document.all.";sobjEnd=".style";vis="visible";invis="hidden";}
	if (document.layers){isNS = true;objBegin="document.layers.";sobjEnd="";vis="show";invis="hide";}
	if (document.getElementById &&!isIE) {isDOM=true;objBegin = "document.getElementById('";sobjEnd = "').style";invis ="hidden";vis = "visible"}
	if (isDOM == true && navigator.appName =="Netscape") isNS6 = true;
	
var oldID = 0;
var ocurID = 0;
var curDO = 0;
var x=0;
var y=0;
var layerTimer;
var currentTimer;
	
//turn on layer visibility and (if needed) turn off any previous layer
	function showlayer(whatID)
	{
	x=0;
	objfind = eval(objBegin + "l" + whatID + sobjEnd);
	if (oldID != whatID)
	{
		oldfind = eval(objBegin + "l" + oldID + sobjEnd);
		oldfind.visibility = invis;
	}
	objfind.visibility = vis;
	oldID = whatID;
	clearTimeout(layerTimer);
	return;
	}
	
//turn off layer upon exit
	function hidelayer()
	{
		if (x<3) x++;
		else
		{
		oldfind = eval(objBegin + "l" + oldID + sobjEnd);
		oldfind.visibility = invis;
		x=0;
		}
	if (curDO=1)
	{
		if (y<4) y++;
		else
		{
		showfind = eval(objBegin + "l" + ocurID + sobjEnd);
		showfind.visibility = vis;
		y=0;
		}
	}
	else y=0;	
		
	layerTimer = setTimeout("hidelayer()",150)	
	}

// hides a specified layer
	function hidecurrent(curID)
	{
	curfind = eval(objBegin + "l" + curID + sobjEnd);
	curfind.visibility = invis;
	ocurID = curID;
	curDO = 1;
	return;
	}
	
// shows a specified layer
//	function showcurrent()
//	{
//		if (y<3) y++;
//		else
//		{
//		showfind = eval(objBegin + "l" + ocurID + sobjEnd);
//		showfind.visibility = vis;
//		y=0;
//		}
//	currentTimer = setTimeout("showcurrent()",150)
//	}
	
//stops layer turn off if mouse is over element
	function startover()
	{
	x=0
	y=0
	clearTimeout(layerTimer);
	}
//DROPDOWN Menu Code End	

//////////////////////////////////////////////////////////////////////////////////////////

<!-- Form Button
function formButtonFever(formName,action){
	var myString = "document."+formName+"."+action+"();";
	eval(myString);
	}
//-->