<!-- Hide from older browsers 

var debug = true;
var mssg="Copyright:  © 2001-2003 Ragbert ® \nRead permission statement at bottom of document.";

function right(e) {
 if (document.layers || document.getElementById &&! document.all) {
 if (e.which == 2 || e.which == 3) {
   alert(mssg);
  return false;
  }
}

 else if (document.all && (event.button == 2 || event.button == 3)) {
  alert(mssg);
  return false;
 }

return true;
}


if (document.layers || document.getElementById &&! document.all) {
 window.captureEvents(Event.onmousedown);
}
window.onmousedown=right;

if (document.all &&! document.getElementById) {
document.onmousedown=right;
}


for (var i=0; i<document.images.length; i++)  // no right click on images
document.images[i].onmousedown=right;

for (var i=0; i<document.links.length; i++)   // no right click on links
document.links[i].onmousedown=right;

document.oncontextmenu = new Function("return false");

// End hiding -->