// Hide or show table
function showLayer(section)
{
	if (document.all[section]) {
			document.all[section].style.display = "";
	}
}
function hideLayer(section)
{
	if (document.all[section]) {
		if (document.all[section].style.display == "") {
			document.all[section].style.display = "none";
		}
	}
}
// jump menu
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
// open browser window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// -------------------------------------------------------------------
// This function Starts the e-mail <a href= tag
// inputs: two email address strings, and email subject
// output: nothing
// Action: none
// return: complete email html line
// -------------------------------------------------------------------
function MailMe(add1, add2) {
   var atsign = "@";
   var dotcom = ".com";

   var Mail2 = "mailto:";//HA@HA.HA.nothing.here.com!
   var Ovr = " onMouseOver=\"window.status='Send an Email: " + "'; return true;\"";
   var Out = " onMouseOut=\"window.status=''\"";
   return(document.write("<a href=\"",Mail2+add1+atsign+add2+dotcom+"\""+Ovr+Out, ">"));
}