// JavaScript Document

function launchWindow(strFile,w,h)  {

  var wid = w;
  var ht = h;
  var winl = (screen.width-wid)/2;
  var wint = (screen.height-ht)/2;
  var theName = "popup";
  var theOptions = "height=" + ht + ",width=" + wid + ",top=" + wint + ",left=" + winl + ",scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=no";
  theWin = window.open(strFile, theName, theOptions);
  theWin.focus();
}
