<!--
function rowOn(menu,color)  {
//alert('Menu '+menu);


var isID = 0;
var isALL = 0;
var isLayers = 0;
var isDHTML = 0;

browserVersion = parseInt(navigator.appVersion);

if (document.getElementById) { 
      isID = 1; 
      isDHTML = 1;
} else if (document.all) {
      isAll = 1; 
      isDHTML = 1;    
// Turn it off in Netscape 4 - nested layers!       
}

if (!isDHTML) {
errorDHTML();
} 
 if (isID) {
                      document.getElementById(menu).style.background = color;
                   }
                      else if (isALL) { 
                      document.all[hotspot].style.background = color;
                   }

}
function errorDHTML() { 
alert("Some features on this page may not work with your browser "+navigator.appName+" "+browserVersion); 
}
//-->
