//this code is the beginning of the right click and key disable
function right(e) { 
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2)) 
return false; 
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) { 
alert("© 2000 - 2007 J.D. Reigada \nAll content included on this site, such as text, graphics, logos, button icons, images, audio clips, and software, is the property of J.D. Reigada or of content suppliers and protected by U.S. and international copyright laws. The compilation (meaning the collection, arrangement, and assembly) of all content on this site is the exclusive property of J.D. Reigada and protected by U.S. and international copyright laws. All software used on this site is the property of J.D. Reigada or of software suppliers and protected by U.S. and international copyright laws. The content and software on this site may be used only as an end-user communication resource. Any other use, including the reproduction, modification, distribution, transmission, republication, display, or performance, of the content on this site is strictly prohibited."); 
return false; 
} 
return true; 
} 

function keypressed() { 
alert("Action not allowed."); 
} 
document.onmousedown=right; 
document.onkeydown=keypressed;