/*To make this work the variable ActiveMenu must be declared in the document and set equal to null*/

ActiveMenu2=null;


function hideminiActive(){
if(ActiveMenu2!==null)
ActiveMenu2.style.display="";
}

/*Shows the Menu for the id submitted*/
function showminiMenu(theid){
hideminiActive();
ActiveMenu2=document.getElementById(theid);
object=document.getElementById(theid);
//object.style.display="";
object.style.display="block";
//object.style.display="none";
//object.style.display="";
}

function hideminiMenu(theid){
object=document.getElementById(theid);
object.style.display="";
}


/*Shows the Menu for the id submitted*/
function REDOshowMenu(theid){
hideActive();
hideminiActive();
ActiveMenu=document.getElementById(theid);
object=document.getElementById(theid);
//object.style.display="";
object.style.display="block";
//object.style.display="none";
//object.style.display="";
}

