<!--
   document.oncontextmenu=notice;
   if (document.all&&window.print)
      document.body.onclick=hidenotice;
//-->
<!-- //No Right Click for Netscape -->
<!--
function noRightClick(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which == 3){
alert(" ");
window.focus;
return false;
}
}
}
document.onmousedown = noRightClick;
//-->