if (navigator.appName == 'Netscape') {document.write('<link href="/style/nsmo.css" rel="stylesheet" />')}

function showMenu(theMenu){
     	eval('document.getElementById("'+theMenu+'").style.visibility = "visible";');
	    if (navigator.appName == 'Netscape'){
	     eval('document.getElementById("' + theMenu + '").style.position = "absolute";');
         eval('document.getElementById("' + theMenu + '").style.display = "block";');
		 eval('document.getElementById("' + theMenu + '").style.zIndex = "6";');
	    }

		
	 }	
function hideMenu(theMenu){
	eval('document.getElementById("' + theMenu + '").style.visibility = "hidden";');

	}
	
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);
 }

}