function lanzarBus(){
		//alert(document.getElementById("caja_buscar").value);
		window.location = "busqueda.asp?cadena=" + document.getElementById("caja_buscar").value;
	}


function cambiaImagen(cual){
	var txt=document.getElementById(cual).src;
	if (txt.lastIndexOf("o.png")>0) {
		txt=txt.replace("_o.png", ".png");
		document.getElementById(cual).src=txt;
	}else{
		txt=txt.replace(".png", "_o.png");
		document.getElementById(cual).src=txt;
	}			
}

function capa_enlaces(){
	if (document.getElementById("enlaces_rel").style.visibility=="visible"){
		document.getElementById("enlaces_rel").style.visibility="hidden";
	}else{
		document.getElementById("enlaces_rel").style.visibility="visible";
	}
}