// Array functionfunction makeArray(len) {	for (var i = 0; i < len; i++) this[i] = null;this.length = len;}//What BrowserbName = navigator.appName;bVer = parseInt(navigator.appVersion);if      (bName == "Netscape" && bVer >= 4) br = "n4";else if (bName == "Netscape" && bVer == 3) br = "n3";else if (bName == "Microsoft Internet Explorer" && bVer >= 4) br = "e4";else if (bName == "Microsoft Internet Explorer") br = "e3";else br = "n2";// Array of day namesvar dayNames = new makeArray(7);dayNames[0] = "Domingo";dayNames[1] = "Lunes";dayNames[2] = "Martes";dayNames[3] = "Miercoles";dayNames[4] = "Jueves";dayNames[5] = "Viernes";dayNames[6] = "Sabado";// Array of month Namesvar monthNames = new makeArray(12);monthNames[0] = "Enero";monthNames[1] = "Febrero";monthNames[2] = "Marzo";monthNames[3] = "Abril";monthNames[4] = "Mayo";monthNames[5] = "Junio";monthNames[6] = "Julio";monthNames[7] = "Agosto";monthNames[8] = "Sept.";monthNames[9] = "Oct.";monthNames[10] = "Nov.";monthNames[11] = "Dic.";var now = new Date();var day = now.getDay();var month = now.getMonth();var year = now.getYear();if (bName == "Netscape")var year = (1900 + year);elsevar year = year;var date = now.getDate();document.write(monthNames[month] + " " + date + ", " + year);