function ShowHide(menuID) { 
var menuObj = "Link" + menuID; 
// CHECK IF OPEN 
if (document.getElementById(menuObj).className == "LINKSON"){ 
document.getElementById(menuObj).className = "LINKSOFF"; 
}else{ 
document.getElementById(menuObj).className = "LINKSON"; 
} 
} 