// Funciones para hacer varios efectos de MouseOver

nuevoColorEnlace = "#CE8419";  // 669933 66FF99 CE8419
nuevoColorFondo = "#EEEEEE"; // Se usa en el enlace de las notas

browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 )) ||
           ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )))

// Funciones modificadas de entrada y salida de textos

function cambiaColorEnlace(RefObjeto) {
//  if (browser) {
    RefObjeto.colorEnlaceAnterior = RefObjeto.style.color;
    RefObjeto.style.color = nuevoColorEnlace;
/*    RefObjeto.style.textDecoration = "underline";
    if (RefObjeto.className == "notas") {
      RefObjeto.colorFondoAnterior = RefObjeto.style.backgroundColor;
      RefObjeto.style.backgroundColor = nuevoColorFondo;
    } */
//  }
}

function regresaColorEnlace(RefObjeto) {
//  if (browser) {
    RefObjeto.style.color = RefObjeto.colorEnlaceAnterior;
/*    RefObjeto.style.textDecoration = "none";
    if (RefObjeto.className == "notas") {
      RefObjeto.style.backgroundColor = RefObjeto.colorFondoAnterior;
    } */
//  }
}
