function rti(src,fondoin){
	if (!src.contains(event.fromElement)){
		src.style.cursor = 'hand';
		src.bgColor = fondoin; 
	}
}
function rto(src,fondout){
	if (!src.contains(event.toElement)){
		src.style.cursor = 'default';
		src.bgColor = fondout;
	}
}
function rtc(src){
	if(event.srcElement.tagName=='TD'){
		src.children.tags('A')[0].click();
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function menu_desplegable(identificador,id_flecha){
	if(document.getElementById(identificador).style.display == 'none'){
		document.getElementById(identificador).style.display='';
		document.getElementById(id_flecha).src='imagenes/flecha_abajo_blanca.gif';
	}
	else{
		document.getElementById(identificador).style.display='none';
		document.getElementById(id_flecha).src='imagenes/flecha_adelante_blanca.gif';
	}
}
function ocultar(identificador){
	if(document.getElementById(identificador).style.display == 'none'){
		document.getElementById(identificador).style.display='';
	}
	else{
		document.getElementById(identificador).style.display='none';
	}
}
function redireccionar(url) {
	location.href=url;
} 
