// ROLLOVER DE COLOR DE CELDAS
 function mOvr(src) {
    if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.bgColor = '#COFCFC';
	}
  }
  function mOut(src) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.bgColor = '#00CCCC';
	}
  }
  function mClk(src) {
    if(event.srcElement.tagName=='TD'){
	  src.children.tags('A')[0].click();
    }
  }


// FECHA
var weekdays = new Array(6);
var months = new Array(11);

var today = new Date();
var month = today.getMonth();
var date = today.getDate();
var weekday = today.getDay();
var year = today.getYear();
if (year <= 99){
year = year + 1900;
}
today = null;

weekdays[0] = "Domingo";
weekdays[1] = "Lunes";
weekdays[2] = "Martes";
weekdays[3] = "Miércoles";
weekdays[4] = "Jueves";
weekdays[5] = "Viernes";
weekdays[6] = "Sábado";

months[0] = "Enero";
months[1] = "Febrero";
months[2] = "Marzo";
months[3] = "Abril";
months[4] = "Mayo";
months[5] = "Junio";
months[6] = "Julio";
months[7] = "Agosto";
months[8] = "Septiembre";
months[9] = "Octubre";
months[10] = "Noviembre";
months[11] = "Diciembre";


// POPUP
function ventana(theURL,winName,features)

{ //v2.0
msgWindow=window.open(theURL,winName,features);
}


// MENSAJE STATUS
function wst(){
window.status="CALIGARIS S.R.L."  ;
window.setTimeout("wst()",0);
}
wst();