// JavaScript Document

// definiciones basicas
OCULTO="none";
VISIBLE="block";
	
function mostrar(blo,on,off) {

  document.getElementById(blo).style.display=VISIBLE;
  document.getElementById(off).style.display=VISIBLE;
  document.getElementById(on).style.display=OCULTO;

}
 
function ocultar(blo,on,off) {

  document.getElementById(blo).style.display=OCULTO;
  document.getElementById(off).style.display=OCULTO;
  document.getElementById(on).style.display=VISIBLE;

}



//--------------- LOCALIZEABLE GLOBALS ---------------
function fecha(){
var d=new Date();
var monthname=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[d.getMonth()] + " " + d.getDate() + ", " + d.getFullYear();
 document.write(TODAY);
}
//---------------   END LOCALIZEABLE   ---------------

