function indique(theURL,winName, w, h, scroll) { //v2.0
w = 400;
h = 220;
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
  window.open(theURL,winName,winprops);
}



// Copyright

function right(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert("< ERROR >");
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("< ERROR >");
return false;
}
return true;
}




// Copyright

function selecao()
{
return(false);
}
function trataTecla() {
if((event.keyCode == 121)&&(event.shiftKey)) alert(message);
}

document.onselectstart=selecao;
document.ondragstart=selecao;

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;



