function PopupWindow(url, width, height, id){
// URL    -- 開きたいドキュメントの URL
// width  -- 表示するウインドウの幅
// heigth -- 表示するウインドウの高さ
// id     -- Window の ID 
// 例 : PopupWindow('event01/event01-01_map.html', '500', '250', 'Pop1');

		var parm;
		var newWin;
		var myid;
	
		if (id == ''){
			myid="pop"
		}else{
			myid = id
		};	
		parm="resizable=yes,menubar=no,directories=no,scrollbars=yes,status=0,location=no,width=" + width + ",height=" + height;
		newWin = window.open(url , myid, parm);
		newWin.resizeTo(width, height);
		newWin.focus();
}

