/* added by uro, managed the layer/browse function */

function showLayer(id) {
  obj=document.getElementById("layer"+id);
  if(obj.style.zIndex=="3"){
    obj.style.zIndex="1";
  }else{
  obj.style.zIndex="3";
  }
}

/* added by uro, layer attributes only active if js is enabled */

function init(id1,id2){
  obj1=document.getElementById("layer"+id1);
if(obj1){

  obj1.style.position="absolute";
  obj1.style.top="58px";
  obj1.style.left="0px";
  obj1.style.zIndex="2";
}  

  obj2=document.getElementById("layer"+id2);
if(obj2){
  obj2.style.position="absolute";
  obj2.style.top="58px";
  obj2.style.left="0px";
  obj2.style.zIndex="1";
}
}

