// para 3 capas
function sortNum(a,b) { return b-a} 
function fixH2(one,two,three) {
if (document.getElementById(one)) {
var obj=new Array(3);
var option=[one,two,three];
for(var i=0; i<option.length; i++) {
document.getElementById(option[i]).style.height="auto";
obj[i]=document.getElementById(option[i]).offsetHeight;
nh=obj.sort(sortNum);
}
nh1=nh.splice(1,2);
for(var i=0; i<option.length; i++) {
document.getElementById(option[i]).style.height=nh+"px";
}
}
}
// FIN 3 CAPAS

  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");
        }
    } 