function fecha() { meses = new Array ("01","02","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('<font face="verdana" size="1" color=#000000>'); 
document.write('<B>'+ diasemana[indexday-1]+ "," + ' '+data.getDate()+ "/" + meses[index] 
+ "/" + anno + '</B>'); document.write('</font>'); }

function sobre(src,Color) {
    if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.bgColor = Color;}
}
function fuera(src,Color2) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.bgColor = Color2;}
}

function cacolor01(fondos, letras)
{document.bgColor = fondos;
document.fgColor = letras;}