
//FUNCION FECHA
function date()
{
var todayIs=new Date();
				var yearIs=todayIs.getFullYear();
				var monthIs=todayIs.getMonth();
				var dayNum=todayIs.getDate();
				var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
				document.write("<font face='tahoma' size='3' color='#FDF5D7'>");
				document.write(montharray[monthIs]);
				document.write(" ");
				document.write(dayNum);
				document.write("  de ");
				document.write(yearIs);
				document.write("</font>");	
}

