// JavaScript Document
function mostrarOcultar(id) {

    if(document.getElementById(id).style["display"] != "none"){
        document.getElementById(id).style["display"] = "none";
		document.getElementById('tituloMisBusquedas').style.backgroundImage="url(http://imagenes.terra.com/srch/t071/fondo_misbusquedas.gif)";
    } else {
        document.getElementById(id).style["display"] = "";
		document.getElementById('tituloMisBusquedas').style.backgroundImage="url(http://imagenes.terra.com/srch/t071/fondo_misbusquedas_cerrar.gif)";
    }
}

function activarCP(id) {
        document.getElementById(id).style["display"] = "";
}
function DesactivarCP(id) {
 document.getElementById(id).style["display"] = "none";
}