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) {
alert("Copyright (c) 2004 - 2007 South - West Country Club!\nBeklager, men vil du bruge noget fra denne hjemmeside,\nBedes du kontakte os pr. e-mail eller telefon. \n \nMed Venlig Hilsen \nBestyrelsen, South - West Country Club");
}
 }
 return true;
}
if (parseInt(navigator.appVersion)>3) {
 document.onmousedown = mouseDown;
 if (navigator.appName=="Netscape") 
  document.captureEvents(Event.MOUSEDOWN);
}
