No right click




Put this between your BODY-tags:
<script language="JavaScript">
<!-- // Begin hiding from old browsers
function right(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which >= 2){
alert("Sorry, no right-click function.");
return false;
}
}
else
if (event.button>=2)
alert("Sorry this function is disabled!");
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// (Resize:) End rightclick disable section
// End hiding -->
</script>

Free JavaScripts provided
by Winfolinx.com



Back