function mostrarOcultar(id) { divID = document.getElementById(id); if(divID.style.display == "") divID.style.display = "none"; else divID.style.display = ""; }
function loadURL(url) { if(url.substring(0,4)!="http") {
url = "http://" + document.location.host + url; } window.location = url; }
function mostrar(nombreCapa){ document.getElementById(nombreCapa).style.display=""; } 
function ocultar(nombreCapa){ document.getElementById(nombreCapa).style.display="none"; }