// JavaScript Document

function noclick(clic) {
var msg="Copyright © 2009. Reservados todos los derechos.";
if (navigator.appName == 'Nestcape' && clic.which==3) {
alert(msg);
return false; 
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
return true; 
}
