// JavaScript Document
<!--
// block the right mouse click on the page
var message="Amirage NEW DVD \n   the BEST OF DVD \n  get it now for only $9.99  \n   includes shipping & handling  \n \n  \n   ALSO. . . MS Jamie performs November 17th and 18th, 2006 \n      at the Connection Nightclub.\n         120 S. Floyd ST.\n         Louisville, KY 40202."
 
function click(e) { //3.0
 if (document.all) {
  if (event.button == 2 || event.button == 3 || event.button == 6 || event.button == 7) {
   alert(message);
   return false;
   }
 }
 if (document.layers) {
  if (e.which == 3) {
   alert(message);
   return false;
   }
 }
}
 if (document.layers) {
  document.captureEvents(Event.MOUSEDOWN);
  }
document.onmousedown=click;
// -->

