
  var winOpts ='';
  function popUp (pPage, width, height, resize, scroll)
  {
    winOpts = 'width=' + width + ',height=' + height + ',resizable=' + resize + ',scrollbars=' + scroll + '';
    window.open(pPage,'_blank',winOpts);
  }
