if (navigator.appName == 'Netscape') {document.write('<link href="/style/nsmo.css" rel="stylesheet" />')}

function showMenu(theMenu){
     	eval('document.getElementById("'+theMenu+'").style.visibility = "visible";');
        hideSelects('hidden');
       
		
	 }	
function hideMenu(theMenu){

string = 'document.getElementById("' + theMenu + '").style.visibility = "hidden";';
   if (navigator.appName == 'Netscape'){
	for(x=1;x<=40000;x++){

	 if(x>=40000){eval(string);}

	} 
   } else {
   //string += 'document.getElementById("' + theMenu + '").style.marginLeft = -document.getElementById("top' + theMenu + '").style.width;';
      //string += 'alert(document.getElementById("top' + theMenu + '").style.width);';
   eval(string);}
   hideSelects('visible');
}
	
window.status=document.title;

function shrinkBanner(imgId,width){
 findString = 'theImg=document.getElementById("'+imgId+'").width;';
 eval(findString);
 if(theImg>width){
 findString2 = 'document.getElementById("'+imgId+'").width = '+width+';';
  eval(findString2);
 }

}


	function hideSelects(action) {
	//documentation for this script at http://www.shawnolson.net/topics/Javascript/
    if (navigator.appName.indexOf("MSIE")) {
	 for (var S = 0; S < document.forms.length; S++){
	  for (var R = 0; R < document.forms[S].length; R++) {
	   if (document.forms[S].elements[R].options) {
	    document.forms[S].elements[R].style.visibility = action;
	   }
	  }
	 }	
	 }
	}