function derecha(e) {
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)){
alert('THIS IS COPYRIGHT! \nIf you want, you can link to this page but DO NOT COPY our hard work\n(c) New Zealand Global Ltda.')
return false;
}

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2)){
alert('THIS IS COPYRIGHT! \nIf you want, you can link to this page but DO NOT COPY our hard work\n(c) New Zealand Global Ltda.')
}
}
document.onmousedown=derecha

