<!--


var oldMenu = "";        //menu global
var T_out = 800;      //menu global
var OpenMenu = "";     //menu global
var mouseoverimage = "images/msover.gif";

function tableOver(cell) {
    cell.style.backgroundColor="#999999";           //table cell onMouseOvers
}

function tableOut(cell) {
   cell.style.backgroundColor="#000000";           //table cell onMouseOuts

}

function menuOver(cell) {
    cell.style.backgroundColor="#cccccc";           //table cell onMouseOvers
}

function menuOut(cell) {
   cell.style.backgroundColor="#ffffff";           //table cell onMouseOuts

}



function MakeMenu(divID) {
menuDiv = document.getElementById(divID);
   	menuDiv.style.visibility = "visible";

}

function MenuHide(divID) {
  menuDiv = document.getElementById(divID)
  menuDiv.style.visibility = "hidden"
        if (oldMenu != ''){
   menuDiv.style.visibility = "hidden"

  }
 oldMenu = divID

}



//-->
