View Single Post
Old 04-28-2001, 11:51 AM   #2
joe4speed
He said Member...heh, heh
 
joe4speed's Avatar
 
Join Date: Sep 1999
Location: Jupiter, Florida U.S.A.
Posts: 3,718
Smile

Here ya go...

copy and paste:

<!-- STEPS TO INSTALL NO RIGHT CLICK:

1. Copy the coding into the HEAD of your HTML document


<!-- Paste this code into the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript1.1">
<!-- Original: Martin Webb (martin@irt.org) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function right(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("Sorry, you do not have permission to right click.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
// End -->
</script>
</HEAD>



------------------
Joe!
1988 GT, 167,000 miles!!! 13.71@105mph Check out my listing! Click here! Or my website:
www.joe4speed.com
1999 Ninja ZX-6R 10.32@135mph!
1993 Olds Eighty Eight LSS

joe4speed is offline   Reply With Quote