/*
 * PowerWeb.js.
 *
 * September 16, 2005 kbridges: bug_1201 Privacy Policy Enhancement
 */
function PW( args ) {
  this.window = function( target, features, type ) {
    // target is the url to open
    // features is the name of the new window
    // type options are popup and popupSub
    if( type == 'popup' ) {
      window.open( target, 'PowerWeb_Window', args.popup );
    } else {
      window.open( target, 'PowerWeb_Window', args.popupSub );
    }
  }
}

