function inicio(objk,direccion){ 
        if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>3)){ 
            objk.style.behavior="url(#default#homepage)"; 
            objk.setHomePage(direccion); 
        } 
        else{ 
            alert("Su navegador no dispone de esta opción"); 
        } 
}   

function visible(identificador){
  var obj = document.getElementById(identificador)
  if(obj.style.display== "none")  obj.style.display= "inline";
}

function invisible(identificador) {
	var obj = document.getElementById(identificador)
    obj.style.display= "none";
}
