// JavaScript Document
<!--
/*FOR DATE*/
var hoy = new Date();
var dias = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var meses = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var dia = hoy.getDate();
var pdia = hoy.getDay();
var pmes = hoy.getMonth();
var ano = hoy.getFullYear();
function fechahoy(){
	document.write(dias[pdia]+" "+dia+" "+meses[pmes].toLowerCase()+" "+ano);
}
/*FOR ROLLOVER CELLS*/
function clov(ident,color) {
	tr=eval('document.all.'+ident);
	tr.style.backgroundColor="#EE0808";
}
function clou(ident,color) {
	tr=eval('document.all.'+ident);
	tr.style.backgroundColor="#F5F5F5";
}
function acc(ruta) {
	window.location.href(ruta);
}
-->
