am = "This function is disabled!";

bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"

function nrc(e) {
   if (bNS && e.which > 1){
      info()
      return false
   } else if (bIE && (event.button >1)) {
     info()
     return false
   }
}
function info()
{
   br = 350;
   ho = 150;

   eg="width="+br+",height="+ho+"scrollbars=0,location=0,statusbar=0,toolbar=0,border=0,menubar=0,resizable=0";
   var info = open('', 'Info', eg );
   var w = info.screen.width;
   var h = info.screen.height;
   var l = (w-br)/2;
   var t = (h-ho)/2;

   info.resizeTo(br,ho);
   info.moveTo(l, t);
   info.focus();

   info_window = info;
   info.document.open();
   info.document.writeln('<html><head><title>Info</title></head>');
   info.document.writeln('<body text=black link=white bgcolor=#CC0000 onBlur="window.focus()">');
   info.document.writeln('<table height="100%" width="100%"><tr><td align=center><a href=Javascript:this.close()><img src="/images/steal.gif" bordeR="0" height="100" width="322"></a></td></tr>');
   info.document.writeln('<tr><td align="center"><a href=Javascript:this.close() style=color:white;>Close</a></td></tr></table>');
   info.document.writeln('</body></html>');
   info.document.close();
   info.window.focus();
}


document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;
document.oncontextmenu=function(){return false};


