// ACTIVE LINKS RED -BLUE
// **************************************************

// ANCHOR DESTINATION
function doAnchor(dest) {
location.href=dest;
}

// ANCHOR ONMOUSEOVER
function redText(celula) {
document.getElementById(celula).style.color = "#bb0000";
}

// ANCHOR ONMOUSEOUT
function blueText(celula) {
document.getElementById(celula).style.color = "#112255";
}