function fecha(color) 
{ 
meses = new Array ("01","01","03","04","05","06","07","08","09","10","11","12"); 
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(diasemana[indexday-1]+ ", " + ' '+data.getDate()+ "/" + meses[index] + "/" + anno); } 