
function shortMonthArray() {
this[0] = "Enero"; this[1] = "Febrero"; this[2] = "Marzo"; this[3] = "Abril"; this[4] = "Mayo"; this[5] = "Junio";
this[6] = "Julio"; this[7] = "Agosto"; this[8] = "Septiembre"; this[9] = "Octubre"; this[10] = "Noviembre"; this[11] = "Diciembre";
return (this);
}
function getlongYear(year){
year = d.getYear();
if (year < 1000)
year+=1900;
return year;
}

function writeDate(){
shortMonths = new shortMonthArray();
d = new Date();
day = d.getDate();
month = d.getMonth();
year = d.getYear();
str = shortMonths[month] + " " +day + ", " +getlongYear(year);
document.writeln(str);
}

function openWin( windowURL, windowName, windowFeatures ) { 
return window.open( windowURL, windowName, windowFeatures ) ; 
} 
// -->
