
-----------------------------------
void
Wed May 28, 2003 6:51 pm

[tutorial] JavaScript- A Mix of Codes
-----------------------------------
PRINTING YOUR WEBSITE
(this goes in your head)





(this goes in your body)






-----------------------------------
void
Wed May 28, 2003 6:58 pm


-----------------------------------
NO RIGHT CLICK ON MY PAGE

Put the following script in the head of your page:


am = "BITCH, DONT TOUCH THAT BUTTON AGAIN!";
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
   if (bNS && e.which > 1){
      alert(am)
      return false
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV