// -------------------------------------------------------------------------- //
// Muda cor de fundo da celula                                                //
// -------------------------------------------------------------------------- //
function fundo(obj,acao,cod,lnk){
  obj.style.cursor ="hand"
  if (acao =="1"){ obj.style.background ="#8CEA00" }
  if (acao =="2"){ obj.style.background ="#8CCD28" }
}

function fundo2(obj,acao,cod){
  obj.style.cursor ="hand"
  if (acao =="1"){ obj.style.background ="#FFFF00" }
  if (acao =="2"){ obj.style.background ="#999999" }
}


// -------------------------------------------------------------------------- //
// Muda Sub Menu                                                              //
// -------------------------------------------------------------------------- //
function menuPopMostra(xMenu){
  document.all[xMenu].style.visibility= "visible";
}
function menuPopEsconde(xMenu){
  document.all[xMenu].style.visibility= "hidden";
}


