// Left Menu Bg Activation

 function turnOn(theField) {
  if (document.getElementById(theField).className != "bottomMenuLine bgSelected") {
    document.getElementById(theField).className = "bottomMenuLine bgOn";
   }
  }
  
  function turnOff(theField) {
    if (document.getElementById(theField).className != "bottomMenuLine bgSelected") {
    document.getElementById(theField).className = "bottomMenuLine";
   }
  }
  
  function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
 }

//This is for the programs section

 function prog_turnOn(theField) {
  if (document.getElementById(theField).className != "programs_bottomMenuLine prog_bgSelected"){
    document.getElementById(theField).className = "programs_bottomMenuLine bgOn";
   }
  }
  
  
 function prog_turnOff(theField) {
    if (document.getElementById(theField).className != "programs_bottomMenuLine prog_bgSelected") {
    document.getElementById(theField).className = "programs_bottomMenuLine";
   }
  }
  
//This is for the sub-programs section

 function subprog_turnOn(theField) {
  if (document.getElementById(theField).className != "programs_bottomMenuLine prog_bgSubSelected"){
    document.getElementById(theField).className = "bottomMenuLine bgOn";
   }
  }
  
  
 function subprog_turnOff(theField) {
    if (document.getElementById(theField).className != "programs_bottomMenuLine prog_bgSubSelected") {
    document.getElementById(theField).className = "bottomMenuLine";
   }
  }