

function showimage(img,w,h) {
document.write('<table border="' +"0"+ '" cellpadding="' +"0"+ '" cellspacing="' +"0"+ '">');
document.write('<tr>');
document.write('<td background="' +img+ '" width="' +w+ '"  height="'+ h +'">');
document.write('<img border="'+ "0" + '" src= "' + "bugzy.gif" +'" width="'+w+'" height="'+h+ '">');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
}

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

