
// here is to protect right click! :-)

// New Security

function noRightClick(evnt) {
errMsg="WARNING!! - COPYRIGHT DYNAMITE STUDIOS © 2005"
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which == 3){alert(errMsg);return false;}}else
if (event.button==2)alert(errMsg);}
document.onmousedown=noRightClick;

// Old Security

document.oncontextmenu = function(){return false}
if(document.layers) {
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}} else {
document.onmousedown = function(){return false}}

