var message="Copyright: 2006. AFRODESIA MP3. All rights reserved. Copyright exists on all information, graphics, video, photographs & intellectual matter. No elements of this site may be copied, reproduced or altered for any web, video or print publishing purposes, without the written consent of AFRODESIA MP3.";
function click(i) {
if (document.all) {
   if (event.button == 2) {
      alert(message);
   return false; }
   }
if (document.layers) {
   if (i.which == 3) {
      alert(message);
   return false; }
   }
}
if (document.layers) {
   document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

