function openWindow( pURL, x, y, pIsMenuShown )
{
  if( x == null )
    x = 740;

  if( y == null )
    y = 525;

  if( pIsMenuShown == null || pIsMenuShown != "yes" )
    pIsMenuShown = "no";

  if( window.BLISSWindow && !BLISSWindow.closed )
  {
    BLISSWindow.location = pURL;
    BLISSWindow.focus();
    window.BLISSWindow.opener = this;
  }
  else
  {
    windowConstraints = "toolbar=no,location=no,directories=no,status=yes" +
      ",menubar=" + pIsMenuShown +
      ",scrollbars=yes" +
      ",resizable=" + pIsMenuShown +
      ",width=" + x + ",height=" + y;

    BLISSWindow = window.open( pURL, "BLISSWindow", windowConstraints );
    //BLISSWindow.moveTo( 17, 17 );
  }
}

function openBlissWindow( pURL, x, y, pIsMenuShown )
{
  openWindow( pURL, x, y, pIsMenuShown );
}
