function Palomainfo(Anilla) {
PopupWindow = window.open("palomas/p"+Anilla+".htm","palomainfo", "width=820, height=600, toolbar=0, status=0, menubar=0, resizable=1, scrollbars=1 ");
PopupWindow.focus();
}
function ShowFocus(Linea) {
document.getElementById("linea"+Linea).style.backgroundColor = 'CCCCCC';
}
function ShowFocus1(Linea) {
document.getElementById("linea"+Linea).style.backgroundColor = '00FFC8';
}
function HideFocus(Linea) {
document.getElementById("linea"+Linea).style.backgroundColor = 'EEEEEE';
}
function HideFocus1(Linea) {
document.getElementById("linea"+Linea).style.backgroundColor = 'FFDCEE';
}
function HideFocusAlt(Linea) {
document.getElementById("linea"+Linea).style.backgroundColor = 'FFFFFF';
}
function HideFocusAlt1(Linea) {
document.getElementById("linea"+Linea).style.backgroundColor = 'FFFFC8';
}
function ChangeFontSize(MinWidth, TextSize) { 
if (document.getElementById) { 
if (screen.width < MinWidth) changeText(TextSize); 
} 
} 

function changeText(sz) { 
var yo = document.getElementsByTagName("tr"); 
for (var i=0; i < yo.length; i++) {
if (yo[i].className != 'tr2') 
yo[i].style.fontSize = sz + "%"; 
} 
} 