
function changeBgColorOn_home(id) {
	document.getElementById("tabla"+id).style.cursor = "hand";
	document.getElementById("tabla"+id).bgColor="A9D5FF";
	document.getElementById("tit"+id).style.color = "4262DB";
	document.getElementById("txt"+id).style.color = "4262DB";
}

function changeBgColorOff_home(id) {
	document.getElementById("tabla"+id).style.cursor = "hand";
	document.getElementById("tabla"+id).bgColor="FFFFFF";
	document.getElementById("tit"+id).style.color = "333333";
	document.getElementById("txt"+id).style.color = "333333";
}

function changeBgColorOn_prog(id) {
	document.getElementById("tabla"+id).style.cursor = "hand";
	document.getElementById("tabla"+id).bgColor="E3FFC5";
	document.getElementById("tit"+id).style.color = "009900";
	document.getElementById("txt"+id).style.color = "009900";
}

function changeBgColorOff_prog(id) {
	document.getElementById("tabla"+id).style.cursor = "hand";
	document.getElementById("tabla"+id).bgColor="FFFFFF";
	document.getElementById("tit"+id).style.color = "333333";
	document.getElementById("txt"+id).style.color = "333333";
}

function getFondo() {

	index = Math.floor(Math.random() * 8)+1;
	window.document['fondo'].src="/img/fondos/fondo0"+index+"_tumbnail.jpg";

}

function getUrl(url) {
document.location=url;
}

function getUrlParent(url) {
parent.location=url;
}

function ventanaLogo(url) {
window.open(url,"Logotipo","width=600, height=414, scrollbars=no, menubar=no, location=no, resizable=no"); 
}

function openPopup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


