<!--


// Begin Função de POPup windows - Copyright - InforSantos, Lda
function popupPage(l, t, w, h, res, URL) {
var windowprops = "location=no,scrollbars=no,menubars=no,toolbars=no,resizable="+ res + ",left=" + l + ",top=" + t + ",width=" + w + ",height=" + h;
popup = window.open(URL,"MenuPopup",windowprops);
}

function toggleLayer( whichLayer )
{
  var elem, vis;
  if( document.getElementById )
    elem = document.getElementById( whichLayer );
  else if( document.all )
      elem = document.all[whichLayer];
  else if( document.layers )
    elem = document.layers[whichLayer];
  vis = elem.style;
  
  if(vis.display==''&&elem.offsetWidth!=undefined&&elem.offsetHeight!=undefined)
    vis.display = (elem.offsetWidth!=0&&elem.offsetHeight!=0)?'block':'none';
  vis.display = (vis.display==''||vis.display=='block')?'none':'block';
}


function LastUpdatePage()
// Devolve Data da ultima actualização da página
{
// last Update
var m = document.lastModified;
var p = m.length-8;
return m.substring(3,5)+"/"+m.substring(0,2)+"/"+m.substring(10,6);
//<script> document.write(LastUpdatePage())</script>
}

function blockError(){return true;}
window.onerror = blockError;

function noRightClick() {
if (event.button==2) {
alert("© InforSantos - 1994-2007")
}
}
document.onmousedown=noRightClick



// -->