
//  Copyright © 2009 FTA Computer Consultants, Inc. All rights reserved.
am='n2'; // initialize to a valid id, or it doesn't know it's an object
 cid='nav1'; //initialize to a valid current id
 nm='n2';
	
function switchMenu(nm,i){
// alert(nm);
// alert(am);
// alert(i);
// alert(cid);
	document.getElementById(cid).style.borderBottom="0";
	document.getElementById(am).style.visibility="hidden";
	document.getElementById(i).style.borderBottom="2px #fff dotted";
	document.getElementById(nm).style.visibility="visible";
	am=nm;
	cid=i;
	//alert(cid);
	}
	
	function switchItem(i){
	// alert(cid);
	//alert(i);
	//alert(cid);
	document.getElementById('nav2').style.borderBottom="0";
	document.getElementById(am).style.visibility="hidden";
	document.getElementById(i).style.borderBottom="2px #fff dotted";
	am=nm;
	cid=i;
	}
	function switchItemS(i){
	// alert(cid);
	//alert(i);
	//alert(cid);
	//document.getElementById('nav2').style.borderBottom="0";
	//document.getElementById(am).style.visibility="hidden";
	document.getElementById(i).style.borderBottom="2px #fff dotted";
	am=nm;
	cid=i;
	}
	function switchItemOff(i){
	// alert(cid);
	//alert(i);
	//alert(cid);
	document.getElementById(cid).style.borderBottom="0";
	}

	
	function menuOff(){
	s1="document.images.";
	s2=".src=";
	s3o="'images/navbar/"+cid+".gif'";
	document.getElementById(am).style.display="none"; //turn menu off;
	eval(s1+cid+s2+s3o); 
	}
	
	
	function check4Blanks(){
if (document.contactForm.myfullname.value.length>0&&document.contactForm.myemail.value.length>0){
	document.contactForm.submit();
	}
	else{
	alert("Please fill in the missing information before continuing.");
	}
	
}