// JavaScript Document

function showMenu(){
	document.getElementById("Menu").style.height = "400px"
}
function hideMenu(){
	document.getElementById("Menu").style.height = "78px"
}

function doover(FRM, BOX){
	var inbox = document.forms[FRM].elements[BOX];
	if(inbox.className == "textfield"){
		inbox.className = 'Over_textfield'; 
	}else{
		
	}
}

function dofocus(FRM, BOX){ 
	var inbox = document.forms[FRM].elements[BOX];
	inbox.className = 'Select_textfield'; 
} 

function doout(FRM, BOX){ 
	var inbox = document.forms[FRM].elements[BOX];
	if(inbox.className == "Select_textfield"){
	
	}else{
		inbox.className = 'textfield';
	}
}

function doblur(FRM, BOX){
	var inbox = document.forms[FRM].elements[BOX];
	inbox.className = "textfield";
}

function goLite(FRM, BTN){
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#009933";
}

function goDim(FRM, BTN){
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#006600";
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
