function ExibeMensagem(status,local) {
   if (status == "over") {
      document.getElementById(''+local+'').style.display = "block";	   
   } else {
      document.getElementById(''+local+'').style.display = "none";	   
   }
}
function mudacorMenu(id,cor){
document.getElementById(''+id+'').style.background = ''+cor+'';
}
function ExibeDiv(status,id) {
   if (status == "over") {
      document.getElementById(''+id+'').style.display = "";	   
   } else {
      document.getElementById(''+id+'').style.display = "none";	   
   }
}