// (c) 2001-2008 by John Steele - http://www.steelesoftconsulting.com/
function popup(page, title, width) {
  height = screen.availHeight - 80;
  var fs = window.open(page,title,"scrollbars=yes,status=yes,resizable=yes,location=no,width=" +
                                  width + ",height=" + height + "left=0,top=0,screenX=0,screenY=0");
  if(fs != null) {
    if(fs.opener == null)
      fs.opener=self;
    fs.focus();
    }
  }
function tpopup(page, title, width) {
  height = screen.availHeight - 80;
  var fs = window.open(page,title,'directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,' +
                                  'width=' + width + ',height=' + height + 'left=0,top=0,screenX=0,screenY=0');
  if(fs != null) {
    if(fs.opener == null)
      fs.opener=self;
    fs.focus();
    }
  }
function pop(page, title, width, height) {
  var fs = window.open(page,title,'directories=no,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no,' +
                                  'width=' + width + ',height=' + height + 'left=0,top=0,screenX=0,screenY=0');
  if(fs != null) {
    if(fs.opener == null)
      fs.opener=self;
    fs.focus();
    }
  }
