/* Designed and Developed By CMC Ltd*/
var win = null;
 
function vfnShow(f_name) {
   if(win == null || win.closed) {
       win = window.open(f_name, 'HtmlWindow', "resizable=1,scrollbars=1");
   }
}

var statusmsg="Thank You for visiting NCMRWF Website";

function hidestatus(){
window.status=statusmsg;
return true;
}


function click(e) {
   
   if (navigator.appName == 'Netscape'
           && e.which == 3) {
      alert("no right click please")
      return false;
      }
   else {
      if (navigator.appName == 'Microsoft Internet Explorer'
          && event.button==2)
         alert("no right click please")
         return false;
         }
   return true;
}

document.onmousedown=click
