/* Open a document in a new window.*/

function openURL(strURL, strWinName, intWinWidth, intWinHeight) {
  var strWinStyle;

  //if popup window needs a toolbar
  strWinStyle = "location=yes,toolbar=yes,width=" + intWinWidth + ",height=" + intWinHeight + ",resizable=yes,menubar=yes,status=yes,scrollbars=yes";
  window.open(strURL, strWinName, strWinStyle);

}



