<!--

//status message to show
var statusmsg=""
function hidestatus(){  window.status=statusmsg; return true}

function click(e) {
  if (navigator.appName == 'Netscape'
           && e.which == 3) {
      alert("protected content")
      return false;
      }
   else {
      if (navigator.appName == 'Microsoft Internet Explorer'
          && event.button==2)
         alert("protected content")
         return false;
         }
   return true;
 }
document.onmousedown=click

//-->
