
<!--

var sWin;
function launchpopup(desturl,winw,winh,winname) {
  if (!((winw)&&(winh))) {
   winw = 640;
   winh = 400;
  }
  var scrw = 640;
  var scrh = 400;
  if ((document.layers)||(document.all)) {
    scrw = screen.width;
    scrh = screen.height;
  }
  winx = (scrw-winw)/2;
  winy = (scrh-winh)/2;
  if ((sWin) && (!sWin.closed)) { sWin.close(); }
  if (!winname) winname = 'popwindow';
  sWin = window.open(desturl,winname,"toolbar=no,location=no,directories=no,resizable=no,scrollbars=no,status=no,menubar=no,dependent=no,width="+winw+",height="+winh+",screenX="+winx+",screenY="+winy+",left="+winx+",top="+winy);

}

function launchresizablepopup(desturl,winw,winh,winname) {
  if (!((winw)&&(winh))) {
   winw = 540;
   winh = 400;
  }
  var scrw = 540;
  var scrh = 480;
  if ((document.layers)||(document.all)) {
    scrw = screen.width;
    scrh = screen.height;
  }
  winx = (scrw-winw)/2;
  winy = (scrh-winh)/2;
  if ((sWin) && (!sWin.closed)) { sWin.close(); }
  if (!winname) winname = 'popwindow';
  sWin = window.open(desturl,winname,"toolbar=no,location=no,directories=no,resizable=yes,scrollbars=no,status=no,menubar=no,dependent=no,width="+winw+",height="+winh+",screenX="+winx+",screenY="+winy+",left="+winx+",top="+winy);
  return false;
}

function launchscrollingpopup(desturl,winw,winh,winname,winstatus) {
  if (!((winw)&&(winh))) {
   winw = 650;
   winh = 600;
  }
  var scrw = 640;
  var scrh = 600;
  if ((document.layers)||(document.all)) {
    scrw = screen.width;
    scrh = screen.height;
  }
  winx = (scrw-winw)/2;
  winy = (scrh-winh)/2;
  if ((sWin) && (!sWin.closed)) { sWin.close(); }
  if (!winname) winname = 'popwindow';
  if (!winstatus) winstatus = 'no';
  sWin = window.open(desturl,winname,"toolbar=no,location=no,directories=no,resizable=no,scrollbars=yes,status="+winstatus+",menubar=no,dependent=no,width="+winw+",height="+winh+",screenX="+winx+",screenY="+winy+",left="+winx+",top="+winy);
  //return false;
}
// -->
