/**
 * ポップアップウインドウ
 * 
 * 日付：2003/05/29
 * 作成：株式会社サーフボード MITSUJI Takamasa<mitsuji@surfboard.co.jp>
 * 
 */


/**
 * オブジェクトのコンストラクタ
 *
 * @input name		ウインドウ名
 * @input settings	ウインドウの設定文字列
 *
 */
function PopupWin(name, settings) {

	var pwin;

	this.name		= name;
	this.settings	= settings;

	this.open		= PopupWin_open;

}


/**
 * オブジェクトのopenメソッド
 *
 * @input url		ウインドウのURL
 *
 */
function PopupWin_open(url) {

	//オブジェクトでないか、閉じているとき開く
	if(typeof(this.pwin) != "object" || this.pwin.closed )
		this.pwin = window.open(url, this.name, this.settings);
	//それ以外はURLの変更のみ
	else
		this.pwin.document.location.href = url;

	//フォーカスを当てる
	this.pwin.focus();

}


