function fecha(color) 
{ 
meses = new Array ("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"); 
data = new Date();
index = data.getMonth();
diasemana=new Array ("Lunes","Martes","Miércoles","Jueves","Viernes","Sábado","Domingo");
day = new Date();
indexday = data.getDay();
if (indexday == 0) 
	{ indexday = 7; 
	} 
anno = data.getYear();
if ( anno < 1900) 
	{ anno = 1900 + anno; 
	} 
document.write(data.getDate()+ " " + meses[index] + " " + anno); } 