var win = '';
function popitup(winURL, ht, wid)
{
  win = window.open(winURL, "llc", "height="+ht+",width="+wid+",scrollbars,resizable=1,left=0,top=0,screenX=0,screenY=0");
  wid2 = parseInt(wid) + 2;
  ht30 = parseInt(ht) + 30;
  win.resizeTo(wid2, ht30);
   if (win.opener == null) win.opener = self;
   win.focus();
}
