function fecha(color) {

	meses = new Array ("urtarril","otsail ","martxo ","apiril ","maiatz","ekain","uztail","abuztu","irail","urri","azaro","abendu");
        data = new Date();
        index = data.getMonth();
        diasemana=new Array ("astelehen","astearte ","asteazken","ostegun","ostiral","larunbat","igande");
        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]+ ", " + meses[index] + " "  + ' '+data.getDate()+ " - " + anno + '');

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

}