var months=new Array(13);

months[1]="ENERO";
months[2]="FEBRERO";
months[3]="MARZO";
months[4]="ABRIL";
months[5]="MAYO";
months[6]="JUNIO";
months[7]="JULIO";
months[8]="AGOSTO";
months[9]="SEPTIEMBRE";
months[10]="OCTUBRE";
months[11]="NOVIEMBRE";
months[12]="DICIEMBRE";

var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
