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

