View Single Post
 
Reply
Posted 2002-06-06, 05:34 PM in reply to Sirpullido's post "Help, help, help..."
this is html for no right clcik:

<script language="JavaScript">
<!--
// No rightclick script.
var message="Here goes your message ";
// Don\'t edit below!
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
</script>
Old
Profile PM WWW Search
Hades-Knight is neither ape nor machine; has so far settled for the in-between
 
 
Hades-Knight