Site hosted by Angelfire.com: Build your free website today!

 

<SCRIPT LANGUAGE="JavaScript1.1"> 
<!-- 
function right(mousebutton) 

var msg1 = "Hey!! Look but don't touch!!"; 
var msg2 = "Isn't this the most annoying script since BLINK?!"; 

if (navigator.appName == 'Netscape' && mousebutton.which==3) 

alert(msg1); 
return false; 

else 

if (navigator.appName == 'Netscape' && mousebutton.which==1) 

alert(msg2); 
return false; 

else 

if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2) 

alert(msg1); 
return false; 

else 

if (navigator.appName == 'Microsoft Internet Explorer' && event.button == 2) 

alert(msg2); 
return false; 

return true; 

document.onmousedown = right; 
// --> 
</SCRIPT>