var message="Copyright Answers 2005";
function click(e)
   {
   if (document.all) {
      if (event.button == 2) {
         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;

status_text();function status_text()
   {
   window.status="   All the Answers   ";
   //setTimeout("status_text()",0);Un-comment this line to make status line display no-change during roll-over
   }