<!--
function mouseDown(e) {
 if (parseInt(navigator.appVersion)>3) {
  var clickType=1;
  if (navigator.appName=="Netscape") clickType=e.which;
  else clickType=event.button;
  if (clickType!=1 && document.title !='DIVERWEST Order Tracking') {
alert("____________________ WARNING! _________________________\nThe DiverWest website is copyrighted. No unauthorized use. No part\nof this website including code, text, photos, images or illustrations\nmay be reproduced or copied without the permission of DiverWest.");
}
 }
 return true;
}
if (parseInt(navigator.appVersion)>3) {
 document.onmousedown = mouseDown;
 if (navigator.appName=="Netscape") 
  document.captureEvents(Event.MOUSEDOWN);
}
//-->
