// JavaScript Document

 function topMenuBg_on (menuNum) {   
  document.getElementById("menu_item_"+menuNum).className = "activeBg";  
 }

 function topMenuBg_off (menuNum) {
  document.getElementById("menu_item_"+menuNum).className = "";  
 }
 
 
// Left Menu Bg Activation

 function turnOn(theField) {
  if (document.getElementById(theField).className != "bottomYellowLine bgSelected") {
    document.getElementById(theField).className = "bottomYellowLine bgOn";
   }
  }
  
  function turnOff(theField) {
    if (document.getElementById(theField).className != "bottomYellowLine bgSelected") {
    document.getElementById(theField).className = "bottomYellowLine";
   }
}

//Open new littel window

function MM_openBrWindow(theURL, winName, features) { //v2.0
    window.open(theURL, winName, features);
}