var msg = "   The contents of these pages\n            are copyright to\nThe Realm Of White Magic 2004\n\n  Please Seek Permission First";

function noRightClick(e) {
   if (document.all) {
      if (event.button == 2) {
         if (msg) alert(msg);
         return false;
      }else{
         return true;
      }
   }else if (document.layers) {
      if (e.which == 3) {
         if (msg) alert(msg);
         return false;
      }else{
         return true;
      }
   }else{
      return true;
   }
}

if (document.layers) document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = noRightClick;

/*
if ( document.images ) {
   for (var i=0; i<document.images.length; i++)
       document.images[i].onmousedown = noRightClick;
   }
}
*/
