// JavaScript Document
/*OCULT="none";
VISIBLE="block";
	
function mostrar(formulari) {
  document.getElementById(formulari).style.display=VISIBLE;
}*/
OCULT="none";
VISIBLE="block";
 
function mostrar(formulari) {
  estado = document.getElementById(formulari).style.display;
  if (estado==OCULT) {
    document.getElementById(formulari).style.display=VISIBLE;
  }
  else {
    document.getElementById(formulari).style.display=OCULT;
  }
}
 