function RightClick(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("The content of this website is protected by copyright, trademark rights and database rights. No reproduction without the consent of Raleigh UK."); return false; } return true; } document.onmousedown = RightClick; document.onmouseup = RightClick; if (document.layers) window.captureEvents(Event.mousedown); if (document.layers) window.captureEvents(Event.mouseup); window.onmousedown = RightClick; window.onmouseup = RightClick;
document.oncontextmenu = function() { return false; };
