// No Right Click Javascript Applet
// by Darren Cummings  [NORCLICK.JS]
// http://www.darren-c.co.uk/?wscripts

function NRCx(e) { if(navigator.appName=="Netscape") { 
if(e.which==3||e.which==2) { return false; return true }}
else { event.cancelBubble=true; event.returnValue=false }} 

if(navigator.appName=="Netscape") window.captureEvents(Event.MOUSEDOWN)
document.oncontextmenu=NRCx; window.onmousedown=NRCx 