function fecha(color) {

	meses = new Array ("January","February","March","April","May","June","July","August","September","October","November","December");
        data = new Date();
        index = data.getMonth();
        diasemana=new Array ("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday");
        day = new Date();
        indexday =  data.getDay();
        if (indexday == 0) {
			indexday = 7;
		}
		anno = data.getYear();
			if ( anno < 1900) {
				anno = 1900 + anno;
	}
		document.write('<font class="fecha">');

        document.write(''+ diasemana[indexday-1]+ ","  + ' '+data.getDate()+ " " + meses[index] + " " + anno + '');

		document.write('</font>');

}