<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
</head>
<PRE>var months=new Array(13);</PRE>
<PRE>months[1]=&quot;Enero&quot;;
months[2]=&quot;Febrero&quot;;
months[3]=&quot;Marzo&quot;;
months[4]=&quot;Abril&quot;;
months[5]=&quot;Mayo&quot;;
months[6]=&quot;Junio&quot;;
months[7]=&quot;Julio&quot;;
months[8]=&quot;Agosto&quot;;
months[9]=&quot;Septiembre&quot;;
months[10]=&quot;Octubre&quot;;
months[11]=&quot;Noviembre&quot;;
months[12]=&quot;Diciembre&quot;;</PRE>
<PRE>var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();</PRE>
<PRE>if (year &lt; 2000)  </PRE>
<PRE>	year = year + 1900; 
	document.write(&quot;, &quot; + date +&quot;  de &quot;);
	document.write( lmonth + &quot; de &quot; + year + &quot; - &quot;);</PRE>
