function fecha(color) { meses = new Array ("ENERO","FEBRERO","MARZO","ABRIL","MAYO","JUNIO","JULIO","AGOSTO","SEPT.","OCTUBRE","NOV.","DIC."); 



data = new Date(); index = data.getMonth(); diasemana=new Array ("LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO","DOMINGO"); 



day = new Date(); indexday = data.getDay(); if (indexday == 0) { indexday = 7; 



} anno = data.getYear(); if ( anno < 1900) { anno = 1900 + anno; } document.write('<font face="verdana" size="1" color=#'+color+'>'); 





document.write('<B>'+ diasemana[indexday-1]+ "," + ' '+data.getDate()+ "/" + meses[index] 



+ "/" + anno + '<B>'); document.write('</font>'); } 