function mostrar(idLayer)
{
 var capa
 if (document.layers) capa = eval("document." + idLayer);
 if (document.all) capa = eval(idLayer + ".style");
 if (document.getElementById) capa = eval('document.getElementById("' + idLayer + '").style');

 if (capa.display == "none"){
  capa.display = (document.layers) ? "block" : "block" ;
 }else{
  capa.display = (document.layers) ? "block" : "none" ;  
 }
}

function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=80
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=7
else if (window.highlighting)
clearInterval(highlighting)
}