function catchClick(e){
if(document.all&&event.button==2){
  alert('Gone Walkabout\n\nCopyright© Sean Connolly');
  return false;
}
else if(navigator.appName=='Netscape'){if(document.getElementById&&e.which==3) {
  alert('Gone Walkabout\n\nCopyright© Sean Connolly');
  return false;
}
else if(document.layers&&e.which==3)return false;}
}
if(document.layers)document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=catchClick;

