//*************************************************************
// 別ウインドウをオープン
//*************************************************************
	function window_open(url , kind , width_val , height_val){ 
	
		//*************************************************************
		// ウインドウのステータス
		// スクロール					yes/no
		// ステータスバーの表示			yes/no
		// ディレクトリバーの表示			yes/no
		// ロケーションバーの表示			yes/no
		// メニューバーの表示				yes/no
		// ツールバーの表示				yes/no
		// ウインドウサイズ変更			yes/no
		// 幅							数値を入力(px)
		// 高さ							数値を入力(px)
		//*************************************************************
			switch (kind){
				case 1:	
					window_name = "wuindou_name";
					scrollbars_val = "yes";
					status_val = "no";
					directories_val = "no";
					location_val = "no";
					menubar_val = "no";
					toolbar_val = "no";
					resizable_val = "no";
					break;
			}
			
		window_status  = "scrollbars=" + scrollbars_val + ",";
		window_status += "status=" + status_val + ",";
		window_status += "directories=" + directories_val + ",";
		window_status += "location=" + location_val + ",";
		window_status += "menubar=" + menubar_val + ",";
		window_status += "toolbar=" + toolbar_val + ",";
		window_status += "resizable=" + resizable_val + ",";
		window_status += "width=" + width_val + ",";
		window_status += "height=" + height_val;
		
		window.open(url , "" , window_status); 
	
	} 

/*******************************************************
ウインドウを閉じる
*******************************************************/
	function doClose(){
		window.close();
	}

