// JavaScript Document
function ver(idDiv){
document.getElementById(idDiv).style.display="inline";
}
function cerrar(idDiv){
document.getElementById(idDiv).style.display="none";
}
function fecha(){
	var ahora = new Date()
	meses = new Array("Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio" , "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre");
	document.write(meses[ahora.getMonth()])
}
function anio(){
	document.write('2011');
}  
