function checkopen(){
if (!newWindow.closed)
{newWindow.close()}}

function popup(source){
newWindow = window.open(source,'newWin','resizable,left=300,top=100,screenx=300,screeny=100,width=300,height=400');
newWindow.focus();
}
function popupwsb(source){
newWindow = window.open(source,'newWinwsb','scrollbars,resizable,left=300,top=100,screenx=300,screeny=100,width=300,height=400');
newWindow.focus();
}
function whois(source){
newWindow = window.open(source,'whois','resizable,left=50,top=100,screenx=50,screeny=100,width=590,height=350');
newWindow.focus();
}
function init()
{newWindow = window.open('','newWin','width=50,height=50');
self.focus();
}
function popups(xref,yref,xsize,ysize,winname,source){
newWindow = window.open(source,winname,'resizable,left=' + xref + ',top=' + yref + ',screenx=' + xref + ',screeny=' + yref + ',width=' + xsize + ',height=' + ysize);
newWindow.focus();
}

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************
var isNS = (navigator.appName == "Netscape") ? 1 : 0;
var EnableRightClick = 0;
if(isNS) 
document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP);
function mischandler(){
  if(EnableRightClick==1){ return true; }
  else {return false; }
}
function mousehandler(e){
  if(EnableRightClick==1){ return true; }
  var myevent = (isNS) ? e : event;
  var eventbutton = (isNS) ? myevent.which : myevent.button;
  if((eventbutton==2)||(eventbutton==3)) return false;
}
function keyhandler(e) {
  var myevent = (isNS) ? e : window.event;
  if (myevent.keyCode==96)
    EnableRightClick = 1;
  return;
}
document.oncontextmenu = mischandler;
document.onkeypress = keyhandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;

