<!--//
//
// IF YOU SEE THIS UPGRADE YOUR BROWSER !!!
//
defaultStatus="CatamountNorth.com"
var message="Sorry, no right click.\nCopyright © 2001 - 2002 Catamount North - All Rights Reserved." 
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

/// Netscape 6.x //////////////////////////
document.oncontextmenu = disableRightClick;
function disableRightClick()
{
alert(message);
return false;
}
//-->
