<!--hide script from old browsers
//No Click! - version 0.6 - Main programme
//Copyright © 1997-2007. Webhandler.com All Rights Reserved.
//Simply -  http://www.webhandler.com
//mirror at http://www.webhandler.com
//Programmed by Danny - info@webhandler.com
//This script may not be used without permission
//
// DO NOT change ANY of the following code !!!
//
BroW = parseInt(navigator.appVersion)
if (BroW >= 4) {Vs = true} else {Vs = false}
if (Vs == true) {
  Wid = screen.availWidth - 30
  Hei = screen.availHeight + 50
  Left = Math.floor((Wid - 350) / 2) ; Top = Math.floor((Hei - 100) / 2)
  if (document.layers) {
    document.captureEvents(Event.MOUSEDOWN)
  }
  document.onmousedown = noClick
}
//
function noClick (e) {
  flag = false
  if (document.layers) {which = e.which ; if (which == 3) {flag = true}
  } else {which = event.button ; if (which == 2) {flag = true}}
  if (flag) {
    alert('Copyright ©1997-2007. Webhandler.com All Rights Reserved. All material herein is the property of Webhandler.com and shall not be reproduced without the written permission of Webhandler.com - www.webhandler.com [info@webhandler.com]')
    return false
  }
}
//
//end hiding contents-->