/* --------------------------------------------------------------------- 
 *
 * Popup
 *
 * --------------------------------------------------------------------- */
function Popup(sURL, iWidth, iHeight, bScrollbars)
{
   if (bScrollbars == true)
   {
      window.open(sURL,"","width=" + iWidth + ",height=" + iHeight + ", scrollbars, resizable");
   }
   else
   {
      window.open(sURL,"","width=" + iWidth + ",height=" + iHeight + ", resizable");
   }
}

