
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function right(e) {
var msg = ": ) ENJOY THE SITE ( :";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
return true;
}
if(document.images)
for(var i=0;i<document.images.length;i++) 
   document.images[i].onmousedown = right;

document.onmousedown = right;
// End -->


