// popupWindow.js 1.1 ( 2001/11/12 )
// Writen by Kenji Shida -- shida@laid8.com
// Copyright (c) 2001-2 Laideight Co., Ltd. All rights reserved.

function popupWindow(page,ww,wh){
	path = page;
	setting = 'resizable=yes,menubar=no,directories=no,status=no,location=no,scrollbars=no,' + 'width=' + ww + ',height=' + wh;
	popupWin = window.open(path,'popup',setting);
}

// ------------------
// ポップアップウィンドウを開くための JavaScript ライブラリ
// 
// 動作チェック状況
// Windows   IE4.0 [？] IE5.0 [◎] IE5.5 [◎] IE6.0 [？] NN6.1 [◎] NN6.0
// Macintosh IE4.5 [？] IE5.0 [○] NC4.7 [◎] NN6.0[？]
// ------------------
