// =============================================================================
// informationポップアップ管理クラス
// =============================================================================
/*
   Information クラス

   最終更新日:2003年8月29日(金)
   -----------------------------------------------------------------------------

   依存
	sniffer.js
	broadcaster.js
	changeimage.js
	window_onload.js

   -----------------------------------------------------------------------------

   コンストラクタの引数
	無し

   -----------------------------------------------------------------------------

   メソッド
	- init()
		初期化・フッタで使うロールオーバ画像のプリロード

	- open()
		ポップアップ開く

*/
// =============================================================================
if(sniffer.DOMable()) {



// -----------------------------------------------------------------------------
/*
   オブジェクト準備
*/
function Information () {
	this.subWin = null;

	this.init();
}
// -----------------------------------------------------------------------------



// -----------------------------------------------------------------------------
/*
   initメソッド
	Null information .init()
*/
Information.prototype.init = function() {
}
// -----------------------------------------------------------------------------




// -----------------------------------------------------------------------------
/*
   openメソッド
	Null information.open(url)
*/
Information.prototype.open = function(url,height) {
	this.subWin = window.open(url, "Information", "width=516,height="+height+",menubar=no,toolbar=no,location=yes,directories=no,status=yes,scrollbars=yes,resizaeable=no'");
}
// -----------------------------------------------------------------------------




// -----------------------------------------------------------------------------
/*
   インスタンス化
*/
var information = new Information();
// -----------------------------------------------------------------------------
}



// -----------------------------------------------------------------------------
/*
   toInformation関数
   	Boolean toInformation(url, height)
   	対応ブラウザ外でもfalseを返さないといけないため、ここに記述
*/
function toInformation(url, height) {
	if(sniffer.DOMable()) {
		information.open(url, height);
	}
	return false;
}
// -----------------------------------------------------------------------------

