<!--

function WinOpen(height,width,url)
{
 window.open(
  url,
  "RegHelp",
  "toolbar=no,location=no,resizable=yes,scrollbars=yes,status=no,height="+height+",width="+width);
}

// -->


<!--

// popname: window name
// fullattr: window properties minus height and width.  Remove any trailing commas in function call!

function WinOpenFullAttr(height,width,url,popname,fullattr)
{
 window.open(
  url,
  popname,
  fullattr + "," + "height=" + height + ",width=" + width);
}

// -->


