// JavaScript Document
var message="Apatris 21 - Se pretender alguma destas fotos, deverá solicitá-las directamente ŕ Apatris 21.";
function noRightClick() {
if (event.button==2) {
alert(message)
}
}


function disabletext(e){
return false
}

function reEnable(){
return true
}

//if the browser is IE4+
document.onselectstart=new Function ("return false")
document.onmousedown=noRightClick

//if the browser is NS6
if (window.sidebar){
document.onmousedown=disabletext
document.onclick=reEnable
}