<!--
var mymessage = "This page is protected and authorized. If you need more info, please send e-mail to promo@sasorizacraft.com";

function rtclickcheck(keyp) {
     if (navigator.appName == "Netscape" && keyp.which == 3) 
     { alert(mymessage) ;
      return false;
      }
     if (navigator.appVersion.indexOf("MSIE") != -1 &&
  event.button == 2) 
      { alert(mymessage);
        return false;
      }
 }
 document.onmousedown = rtclickcheck;
 //-->
