<!--

/* ============================================================================
  Script ID   : local.js

  Desc        : Include file containing shared local functions for PHS web site.

  Included by : index.html

  Functions Defined in this File
  NAME            DESCRIPTION
  -------------   ------------------------------------------------------------
  popWin          Pop window, create new browser window.
  -------------   ------------------------------------------------------------

 =============================================================================== */


/** Pop window, create new browser window.
  *
  * @param  url      : URL to open in new window.
  *         type     : string
  *
  * @param  id       : window id.
  *         type     : string
  *
  */
function popWin(url,id) 
{
  var win = window.open(url,id,"toolbars,status,resizable,scrollbars,width=650,height=650");
  win.focus() ;
}

// end hide -->

