 function postLink(p1,p2)
 {
 document.MyForm01.S1.value=p1;
 document.MyForm01.target=p2;
 document.MyForm01.submit();
 }

/**
 *  強引に空港コードにHIDDENを設定する
 *  MacのIE4.5のみのため
*/
var cchk = false;
function postLink(p1,p2)
{
	document.MyForm.S1.value=p1;
	document.MyForm.target=p2;
	document.MyForm.submit();
}

//子供のチェック
function onWithChild()
{
	if(cchk){
		cchk=false;
	}else{
		cchk=true;
	}
}
//検索関数
function onSerach()
{
	//出発日のチェック
	var stY = document.MyForm.Year1.options[document.MyForm.Year1.selectedIndex].value;
	var stM = document.MyForm.Month1.options[document.MyForm.Month1.selectedIndex].value;
	var stD = document.MyForm.Day1.options[document.MyForm.Day1.selectedIndex].value;
	var enY = document.MyForm.Year2.options[document.MyForm.Year2.selectedIndex].value;
	var enM = document.MyForm.Month2.options[document.MyForm.Month2.selectedIndex].value;
	var enD = document.MyForm.Day2.options[document.MyForm.Day2.selectedIndex].value;
	var check = 0;
	check = checkOfDate(stY, stM, stD);
	
	if(check) {
		window.alert("チェックイン日が不正です");
		return;
	}
	
	check = 0;
	check = checkOfDate(enY, enM, enD);
	if(check) {
		window.alert("チェックアウト日が不正です");
		return;
	}  
	//add e Y.Masuda
	
	var stDate = new Date(stY, stM - 1, stD);
	var enDate = new Date(enY, enM - 1, enD);
	if(stDate.getFullYear()*10000+((stDate.getMonth() + 1)*100)+stDate.getDate() >= enDate.getFullYear()*10000+((enDate.getMonth() + 1)*100)+enDate.getDate()){
		window.alert("日付が不正です");
		return;
	}
	
	if(document.MyForm.TravelWith.value == "" || document.MyForm.TravelWith.value == 0 ){
		window.alert("人数が未入力です");
		return;
	}
	if(isNaN(document.MyForm.TravelWith.value)){
		window.alert("参加人数には数値を入力してください");
		return;
	}
	if(document.MyForm.TravelWith.value > 9){
		window.alert("参加人数は最高９人までです");
		return;
	}
	if(document.MyForm.TravelWith.value < document.MyForm.TravelRoom.value){
		window.alert("ご利用部屋数がご旅行参加者人数より多く指定されています");
		return;
	}
	if(document.MyForm.TravelWith.value < 2 && document.MyForm.IncludeChild.checked ){
		window.alert("お子様が参加する場合は、必ず２名様以上を入力してください");
		return;
	}
	if(document.MyForm.cty_var_flg.value == "var"){
		if(document.MyForm.GoPort2.options[document.MyForm.GoPort2.selectedIndex].value == ""){
			window.alert("宿泊地が選択されてません");
			return;
		}
	}
//	if(document.MyForm.EarlyCheckIn.value == "0"){
//	}
//	else{
//		window.alert("アーリーチェックインが指定されてません");
//		return;
//	}
	//都市コードは大文字に変換
	if(document.MyForm.cty_var_flg.value == "var"){
	var ss = new String(document.MyForm.GoPort2.options[document.MyForm.GoPort2.selectedIndex].value);
	if(ss.length != 3){
		window.alert("宿泊地コードが不正です");
		return;
	}
	document.MyForm.GoPort2.value = ss.toUpperCase();
	}
	postLink('search','_blank');
	
}
//Window Open
var w = window;
function openWin(url) {
	w = open(url);
	return(false);
}
//////////ここからカレンダー表示部分//////////
var     cal_start = null ;      /* 出発日　　：カレンダウインドウ */
var     cal_end = null ;        /* 現地出発日：カレンダウインドウ */
/**
*
* カレンダーを開く。
*
*/
function openStartCalendar(){
	if( cal_start == null ){
		cal_start = window.open(
			"/pages/calendar_hotel_start.html", "calendar_s", 'width=200,height=350,resizable=1' );
		}
	}
function openEndCalendar(){
	if( cal_end == null ){
		cal_end = window.open(
		"/pages/calendar_hotel_end.html", "calendar_e", 'width=200,height=350,resizable=1' );
	}
}
/**
*
* カレンダーを閉じる。
*
*/
function closeDate1Calendar(){
	if( cal_start != null ){
		cal_start.close();
		cal_start = null ;
	}
	var Y1 = document.MyForm.Year1.options[document.MyForm.Year1.selectedIndex].value;
	var M1 = document.MyForm.Month1.options[document.MyForm.Month1.selectedIndex].value;
	var D1 = document.MyForm.Day1.options[document.MyForm.Day1.selectedIndex].value;
	var Y2 = document.MyForm.Year2.options[document.MyForm.Year2.selectedIndex].value;
	var M2 = document.MyForm.Month2.options[document.MyForm.Month2.selectedIndex].value;
	var D2 = document.MyForm.Day2.options[document.MyForm.Day2.selectedIndex].value;
	var Date1 = new Date(Y1, M1 - 1, D1);
	var Date2 = new Date(Y2, M2 - 1, D2);
	if(Date1.getFullYear()*10000+((Date1.getMonth() + 1)*100)+Date1.getDate() >= Date2.getFullYear()*10000+((Date2.getMonth() + 1)*100)+Date2.getDate()){
		if(document.MyForm.Day1.selectedIndex==30){
			if(document.MyForm.Month1.selectedIndex==12){
				document.MyForm.Year2.selectedIndex = document.MyForm.Year1.selectedIndex + 1;
				document.MyForm.Month2.selectedIndex = 0;
			}else{
				document.MyForm.Month2.selectedIndex = document.MyForm.Month1.selectedIndex + 1;
			}
			document.MyForm.Day2.selectedIndex = 0;
		}else{
			document.MyForm.Year2.selectedIndex = document.MyForm.Year1.selectedIndex;
			document.MyForm.Month2.selectedIndex = document.MyForm.Month1.selectedIndex;
			document.MyForm.Day2.selectedIndex = document.MyForm.Day1.selectedIndex + 1;
		}
	}
}
function closeDate2Calendar(){
	if( cal_end != null ){
		cal_end.close();
		cal_end = null ;
	}
}
/**
 *
 * 終了処理。カレンダーを開いている場合には閉じる。
 *
*/
function term(){
	if( cal_start != null ){
		cal_start.flg = 0 ;
		cal_start.close();
	}
	if( cal_end != null ){
		cal_end.flg = 0 ;
		cal_end.close();
	}
	if( dest_list != null ){
		dest_list.flg = 0 ;
		dest_list.close();
	}
	if( purpose_list != null ){
		purpose_list.flg = 0 ;
		purpose_list.close();
	}
}
/**
 *
 * 西暦を指定されるリストの表示。
 *
*/
function writeStartYear(){
	document.write( '<SELECT name="Year1" onChange="javascript:closeDate1Calendar()">' )
	var     today = new Date();
	today.setTime(today.getTime()+(24*60*60*11000));
	var     yy = today.getFullYear();
	var     y ;
	for( y = today.getFullYear() ; y <= today.getFullYear() + 1 ; y++ ){
			if( yy == y ){
				document.write( '<OPTION selected value="' + y + '">' + y )
			}
		else{
			document.write( '<OPTION value="' + y + '">' + y )
		}
	}
	document.write( '</SELECT>' )
	document.write( '年' )
}
function writeEndYear(){
	document.write( '<SELECT name="Year2" onChange="javascript:closeDate2Calendar()">' )
	var     today = new Date();
	today.setTime(today.getTime()+(24*60*60*12000));
	var     yy = today.getFullYear();
	var     y ;
	for( y = today.getFullYear() ; y <= today.getFullYear() + 1 ; y++ ){
		if( yy == y ){
			document.write( '<OPTION selected value="' + y + '">' + y )
		}
		else{
			document.write( '<OPTION value="' + y + '">' + y )
		}
	}
	document.write( '</SELECT>' )
	document.write( '年' )
}
/**
*
* 月を指定されるリストの表示。
*
*/
function writeStartMonth(){
	document.write( '<SELECT name="Month1" onChange="javascript:closeDate1Calendar()">' )
	var     today = new Date();
	today.setTime(today.getTime()+(24*60*60*11000));
	var     mm = today.getMonth() + 1 ;
	var     m ;
	for( m = 1 ; m <= 12 ; m++ ){
		if( mm == m ){
			document.write( '<OPTION selected value="' + m + '">' + m )

		}
		else{
			document.write( '<OPTION value="' + m + '">' + m )
		}
	}
	document.write( '</SELECT>' )
	document.write( '月' )
}
function writeEndMonth(){
	document.write( '<SELECT name="Month2" onChange="javascript:closeDate2Calendar()">' )
	var     today = new Date();
	today.setTime(today.getTime()+(24*60*60*12000));
	var     mm = today.getMonth() + 1 ;
	var     m ;
	for( m = 1 ; m <= 12 ; m++ ){
		if( mm == m ){
			document.write( '<OPTION selected value="' + m + '">' + m )
		}
		else{
			document.write( '<OPTION value="' + m + '">' + m )
		}
	}
	document.write( '</SELECT>' )
	document.write( '月' )
}
/**
*
* 日を指定されるリストの表示。
*
*/
function writeStartDate(){
	document.write( '<SELECT name="Day1" onChange="javascript:closeDate1Calendar()">' )
	var     today = new Date();
	today.setTime(today.getTime()+(24*60*60*11000));
	var     dd = today.getDate();
	var     d ;
	for( d = 1 ; d <= 31 ; d++ ){
		if( dd == d ){
			document.write( '<OPTION selected value="' + d + '">' + d )
		}
		else{
			document.write( '<OPTION value="' + d + '">' + d )
		}
	}
	document.write( '</SELECT>' )
	document.write( '日' )
}
function writeEndDate(){
	document.write( '<SELECT name="Day2" onChange="javascript:closeDate2Calendar()">' )
	var     today = new Date();
	today.setTime(today.getTime()+(24*60*60*12000));
	var     dd = today.getDate();
	var     d ;
	for( d = 1 ; d <= 31 ; d++ ){
		if( dd == d ){
			document.write( '<OPTION selected value="' + d + '">' + d )
		}
		else{
			document.write( '<OPTION value="' + d + '">' + d )
		}
	}
	document.write( '</SELECT>' )
	document.write( '日' )
}
//////////ここまでカレンダー表示部分//////////
/** お子さまの説明 */
function openChildInf() {
	window.open("/pages/Chd_Inf_Htl.html", "chd_inf", 'width=400,height=300,resizable=1' );
}
/** アーリーチェックインの説明 */
function openEarlyCheckIn() {
	window.open("/pages/E_Chkin.html", "earlycheckin", 'width=400,height=300,resizable=1' );
}
//add s Y.Masuda
// 日付チェック
function checkOfDate(yy,mm,dd) {
	var maxmon  = new Array(0,31,28,31,30,31,30,31,31,30,31,30,31);        
		//閏年処理
		if (((yy % 4 == 0) && (yy % 100 != 0)) || (yy % 400 == 0)) {
			maxmon[2] = 29; 
		} 
		if (maxmon[mm] < dd){
			return 1;
		}
		return 0;
	}
	//add e Y.Masuda

function chg(CI){
    j=CI.AC00.options[CI.AC00.selectedIndex].value;
    switch(j){
	case 'AE':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'デュバイ';
		CI.GoPort2.options[1].value = 'DXB';
	break;	
	case 'AT':	
		CI.GoPort2.options.length = 13;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'インスブルック';
		CI.GoPort2.options[1].value = 'INN';
		CI.GoPort2.options[2].text = 'ウィーン';
		CI.GoPort2.options[2].value = 'VIE';
		CI.GoPort2.options[3].text = 'クラーゲンフルト';
		CI.GoPort2.options[3].value = 'KLU';
		CI.GoPort2.options[4].text = 'グラーツ';
		CI.GoPort2.options[4].value = 'GRZ';
		CI.GoPort2.options[5].text = 'ザルツブルク';
		CI.GoPort2.options[5].value = 'SZG';
		CI.GoPort2.options[6].text = 'サンクト・ヴォルフガング';
		CI.GoPort2.options[6].value = 'AT0';
		CI.GoPort2.options[7].text = 'バーデン';
		CI.GoPort2.options[7].value = 'AT2';
		CI.GoPort2.options[8].text = 'バート・イシュル';
		CI.GoPort2.options[8].value = 'AT3';
		CI.GoPort2.options[9].text = 'バートガーシュタイン';
		CI.GoPort2.options[9].value = 'AT4';
		CI.GoPort2.options[10].text = 'ブレゲンツ';
		CI.GoPort2.options[10].value = 'AT5';
		CI.GoPort2.options[11].text = 'ホフ・バイ・ザルツブルク';
		CI.GoPort2.options[11].value = 'AT6';
		CI.GoPort2.options[12].text = 'リンツ';
		CI.GoPort2.options[12].value = 'LNZ';
	break;	
	case 'OC':	
		CI.GoPort2.options.length = 9;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'エアーズロック';
		CI.GoPort2.options[1].value = 'AYQ';
		CI.GoPort2.options[2].text = 'キャンベラ';
		CI.GoPort2.options[2].value = 'CBR';
		CI.GoPort2.options[3].text = 'ケアンズ';
		CI.GoPort2.options[3].value = 'CNS';
		CI.GoPort2.options[4].text = 'ゴールドコースト';
		CI.GoPort2.options[4].value = 'OOL';
		CI.GoPort2.options[5].text = 'シドニー';
		CI.GoPort2.options[5].value = 'SYD';
		CI.GoPort2.options[6].text = 'パース';
		CI.GoPort2.options[6].value = 'PER';
		CI.GoPort2.options[7].text = 'ブリスベン';
		CI.GoPort2.options[7].value = 'BNE';
		CI.GoPort2.options[8].text = 'メルボルン';
		CI.GoPort2.options[8].value = 'MEL';
	break;	
	case 'BE':	
		CI.GoPort2.options.length = 6;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アントワープ';
		CI.GoPort2.options[1].value = 'ANR';
		CI.GoPort2.options[2].text = 'ゲント';
		CI.GoPort2.options[2].value = 'GNE';
		CI.GoPort2.options[3].text = 'ブリュッセル';
		CI.GoPort2.options[3].value = 'BRU';
		CI.GoPort2.options[4].text = 'ブルージュ';
		CI.GoPort2.options[4].value = 'BRG';
		CI.GoPort2.options[5].text = 'リエージュ';
		CI.GoPort2.options[5].value = 'LGG';
	break;	
	case 'BG':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ソフィア';
		CI.GoPort2.options[1].value = 'SOF';
	break;	
	case 'CA':	
		CI.GoPort2.options.length = 4;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'トロント';
		CI.GoPort2.options[1].value = 'YYZ';
		CI.GoPort2.options[2].text = 'ナイアガラ　フォールズ';
		CI.GoPort2.options[2].value = 'IAG';
		CI.GoPort2.options[3].text = 'バンクーバー';
		CI.GoPort2.options[3].value = 'YVR';
	break;	
	case 'CH':	
		CI.GoPort2.options.length = 11;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'インターラーケン';
		CI.GoPort2.options[1].value = 'CH2';
		CI.GoPort2.options[2].text = 'グリンデルヴァルト';
		CI.GoPort2.options[2].value = 'CH3';
		CI.GoPort2.options[3].text = 'サン・モリッツ';
		CI.GoPort2.options[3].value = 'SMV';
		CI.GoPort2.options[4].text = 'ジュネーヴ';
		CI.GoPort2.options[4].value = 'GVA';
		CI.GoPort2.options[5].text = 'チューリッヒ';
		CI.GoPort2.options[5].value = 'ZRH';
		CI.GoPort2.options[6].text = 'ツェルマット';
		CI.GoPort2.options[6].value = 'CH5';
		CI.GoPort2.options[7].text = 'ベルン';
		CI.GoPort2.options[7].value = 'BRN';
		CI.GoPort2.options[8].text = 'ルガノ';
		CI.GoPort2.options[8].value = 'LUG';
		CI.GoPort2.options[9].text = 'ルツェルン';
		CI.GoPort2.options[9].value = 'CH0';
		CI.GoPort2.options[10].text = 'ローザンヌ';
		CI.GoPort2.options[10].value = 'CH1';
	break;	
	case 'CN':	
		CI.GoPort2.options.length = 7;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = '広州（クワンチョウ）';
		CI.GoPort2.options[1].value = 'CAN';
		CI.GoPort2.options[2].text = '上海（シャンハイ）';
		CI.GoPort2.options[2].value = 'SHA';
		CI.GoPort2.options[3].text = '西安（シーアン）';
		CI.GoPort2.options[3].value = 'SIA';
		CI.GoPort2.options[4].text = '大連（ターリエン）';
		CI.GoPort2.options[4].value = 'DLC';
		CI.GoPort2.options[5].text = '南京（ナンキン）';
		CI.GoPort2.options[5].value = 'NKG';
		CI.GoPort2.options[6].text = '北京（ペキン）';
		CI.GoPort2.options[6].value = 'BJS';
	break;	
	case 'CU':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'キーウエスト';
		CI.GoPort2.options[1].value = 'EYW';
		CI.GoPort2.options[2].text = 'カンクン';
		CI.GoPort2.options[2].value = 'CUN';
	break;	
	case 'CZ':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'プラハ';
		CI.GoPort2.options[1].value = 'PRG';
	break;	
	case 'DE':	
		CI.GoPort2.options.length = 20;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アウグスブルグ';
		CI.GoPort2.options[1].value = 'AGB';
		CI.GoPort2.options[2].text = 'ヴュルツブルグ';
		CI.GoPort2.options[2].value = 'QWU';
		CI.GoPort2.options[3].text = 'ケルン';
		CI.GoPort2.options[3].value = 'CGN';
		CI.GoPort2.options[4].text = 'シュトゥットガルト';
		CI.GoPort2.options[4].value = 'STR';
		CI.GoPort2.options[5].text = 'デュッセルドルフ';
		CI.GoPort2.options[5].value = 'DUS';
		CI.GoPort2.options[6].text = 'ドレスデン';
		CI.GoPort2.options[6].value = 'DRS';
		CI.GoPort2.options[7].text = 'ニュルンベルク';
		CI.GoPort2.options[7].value = 'NUE';
		CI.GoPort2.options[8].text = 'バーデン・バーデン';
		CI.GoPort2.options[8].value = 'DE0';
		CI.GoPort2.options[9].text = 'ハイデルベルク';
		CI.GoPort2.options[9].value = 'HDB';
		CI.GoPort2.options[10].text = 'ハノーヴァー';
		CI.GoPort2.options[10].value = 'HAJ';
		CI.GoPort2.options[11].text = 'ハンブルク';
		CI.GoPort2.options[11].value = 'HAM';
		CI.GoPort2.options[12].text = 'フュッセン';
		CI.GoPort2.options[12].value = 'DE1';
		CI.GoPort2.options[13].text = 'フランクフルト';
		CI.GoPort2.options[13].value = 'FRA';
		CI.GoPort2.options[14].text = 'ブレーメン';
		CI.GoPort2.options[14].value = 'BRE';
		CI.GoPort2.options[15].text = 'ベルリン';
		CI.GoPort2.options[15].value = 'BER';
		CI.GoPort2.options[16].text = 'ボン';
		CI.GoPort2.options[16].value = 'BNJ';
		CI.GoPort2.options[17].text = 'マインツ';
		CI.GoPort2.options[17].value = 'QMZ';
		CI.GoPort2.options[18].text = 'ミュンヘン';
		CI.GoPort2.options[18].value = 'MUC';
		CI.GoPort2.options[19].text = 'ライプツィヒ';
		CI.GoPort2.options[19].value = 'LEJ';
	break;	
	case 'DK':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'オーデンセ';
		CI.GoPort2.options[1].value = 'ODE';
		CI.GoPort2.options[2].text = 'コペンハーゲン';
		CI.GoPort2.options[2].value = 'CPH';
	break;	
	case 'EG':	
		CI.GoPort2.options.length = 4;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アスワン';
		CI.GoPort2.options[1].value = 'ASW';
		CI.GoPort2.options[2].text = 'カイロ';
		CI.GoPort2.options[2].value = 'CAI';
		CI.GoPort2.options[3].text = 'ルクソール';
		CI.GoPort2.options[3].value = 'LXR';
	break;	
	case 'ES':	
		CI.GoPort2.options.length = 10;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'グラナダ';
		CI.GoPort2.options[1].value = 'GRX';
		CI.GoPort2.options[2].text = 'コルドバ';
		CI.GoPort2.options[2].value = 'ODB';
		CI.GoPort2.options[3].text = 'セビリア';
		CI.GoPort2.options[3].value = 'SVQ';
		CI.GoPort2.options[4].text = 'トレド';
		CI.GoPort2.options[4].value = 'TOL';
		CI.GoPort2.options[5].text = 'バルセロナ';
		CI.GoPort2.options[5].value = 'BCN';
		CI.GoPort2.options[6].text = 'パルマ・マジョルカ';
		CI.GoPort2.options[6].value = 'PMI';
		CI.GoPort2.options[7].text = 'バレンシア';
		CI.GoPort2.options[7].value = 'VLC';
		CI.GoPort2.options[8].text = 'マドリッド';
		CI.GoPort2.options[8].value = 'MAD';
		CI.GoPort2.options[9].text = 'マラガ';
		CI.GoPort2.options[9].value = 'AGP';
	break;	
	case 'FI':	
		CI.GoPort2.options.length = 5;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'タンペレ';
		CI.GoPort2.options[1].value = 'TMP';
		CI.GoPort2.options[2].text = 'トゥルク';
		CI.GoPort2.options[2].value = 'TKU';
		CI.GoPort2.options[3].text = 'ヘルシンキ';
		CI.GoPort2.options[3].value = 'HEL';
		CI.GoPort2.options[4].text = 'ロヴァニエミ';
		CI.GoPort2.options[4].value = 'RVN';
	break;	
	case 'FR':	
		CI.GoPort2.options.length = 27;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アヴィニョン';
		CI.GoPort2.options[1].value = 'AVN';
		CI.GoPort2.options[2].text = 'アヌシー';
		CI.GoPort2.options[2].value = 'NCY';
		CI.GoPort2.options[3].text = 'アルビ';
		CI.GoPort2.options[3].value = 'LBI';
		CI.GoPort2.options[4].text = 'アルル';
		CI.GoPort2.options[4].value = 'FR0';
		CI.GoPort2.options[5].text = 'エクス・アン・プロヴァンス';
		CI.GoPort2.options[5].value = 'AIX';
		CI.GoPort2.options[6].text = 'カルカッソンヌ';
		CI.GoPort2.options[6].value = 'CCF';
		CI.GoPort2.options[7].text = 'カンヌ';
		CI.GoPort2.options[7].value = 'CEQ';
		CI.GoPort2.options[8].text = 'コルマール';
		CI.GoPort2.options[8].value = 'CMR';
		CI.GoPort2.options[9].text = 'サン・マロ';
		CI.GoPort2.options[9].value = 'FR5';
		CI.GoPort2.options[10].text = 'シャモニー';
		CI.GoPort2.options[10].value = 'FR1';
		CI.GoPort2.options[11].text = 'ストラスブール';
		CI.GoPort2.options[11].value = 'SXB';
		CI.GoPort2.options[12].text = 'ディジョン';
		CI.GoPort2.options[12].value = 'DIJ';
		CI.GoPort2.options[13].text = 'トゥール';
		CI.GoPort2.options[13].value = 'TUF';
		CI.GoPort2.options[14].text = 'トゥールーズ';
		CI.GoPort2.options[14].value = 'TLS';
		CI.GoPort2.options[15].text = 'ドーヴィル';
		CI.GoPort2.options[15].value = 'DOL';
		CI.GoPort2.options[16].text = 'ナント';
		CI.GoPort2.options[16].value = 'NTE';
		CI.GoPort2.options[17].text = 'ニース';
		CI.GoPort2.options[17].value = 'NCE';
		CI.GoPort2.options[18].text = 'ニーム';
		CI.GoPort2.options[18].value = 'FNI';
		CI.GoPort2.options[19].text = 'パリ';
		CI.GoPort2.options[19].value = 'PAR';
		CI.GoPort2.options[20].text = 'ボルドー';
		CI.GoPort2.options[20].value = 'BOD';
		CI.GoPort2.options[21].text = 'マルセイユ';
		CI.GoPort2.options[21].value = 'MRS';
		CI.GoPort2.options[22].text = 'モンペリエ';
		CI.GoPort2.options[22].value = 'MPL';
		CI.GoPort2.options[23].text = 'ランス';
		CI.GoPort2.options[23].value = 'RHE';
		CI.GoPort2.options[24].text = 'リヨン';
		CI.GoPort2.options[24].value = 'LYS';
		CI.GoPort2.options[25].text = 'レンヌ';
		CI.GoPort2.options[25].value = 'RNS';
		CI.GoPort2.options[26].text = 'ロワシー';
		CI.GoPort2.options[26].value = 'FR3';
	break;	
	case 'GB':	
		CI.GoPort2.options.length = 11;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'インバネス';
		CI.GoPort2.options[1].value = 'INV';
		CI.GoPort2.options[2].text = 'ウィンダミア';
		CI.GoPort2.options[2].value = 'UK0';
		CI.GoPort2.options[3].text = 'エジンバラ';
		CI.GoPort2.options[3].value = 'EDI';
		CI.GoPort2.options[4].text = 'グラスゴー';
		CI.GoPort2.options[4].value = 'GLA';
		CI.GoPort2.options[5].text = 'ストラトフォード・アポン・エイボン';
		CI.GoPort2.options[5].value = 'UK1';
		CI.GoPort2.options[6].text = 'チェスター';
		CI.GoPort2.options[6].value = 'CEG';
		CI.GoPort2.options[7].text = 'チェルトナム';
		CI.GoPort2.options[7].value = 'UK2';
		CI.GoPort2.options[8].text = 'バース';
		CI.GoPort2.options[8].value = 'UK3';
		CI.GoPort2.options[9].text = 'マンチェスター';
		CI.GoPort2.options[9].value = 'MAN';
		CI.GoPort2.options[10].text = 'ロンドン';
		CI.GoPort2.options[10].value = 'LON';
	break;	
	case 'GR':	
		CI.GoPort2.options.length = 6;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アテネ';
		CI.GoPort2.options[1].value = 'ATH';
		CI.GoPort2.options[2].text = 'サントリーニ島';
		CI.GoPort2.options[2].value = 'JTR';
		CI.GoPort2.options[3].text = 'テッサロニキ';
		CI.GoPort2.options[3].value = 'SKG';
		CI.GoPort2.options[4].text = 'ヘラクリオン';
		CI.GoPort2.options[4].value = 'HER';
		CI.GoPort2.options[5].text = 'ミコノス島';
		CI.GoPort2.options[5].value = 'JMK';
	break;	
	case 'HK':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = '香港（ホンコン）';
		CI.GoPort2.options[1].value = 'HKG';
	break;	
	case 'HU':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ブダペスト';
		CI.GoPort2.options[1].value = 'BUD';
	break;	
	case 'HW':	
		CI.GoPort2.options.length = 4;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ハワイ島';
		CI.GoPort2.options[1].value = 'KOA';
		CI.GoPort2.options[2].text = 'ホノルル（オアフ島）';
		CI.GoPort2.options[2].value = 'HNL';
		CI.GoPort2.options[3].text = 'マウイ島';
		CI.GoPort2.options[3].value = 'OGG';
	break;	
	case 'ID':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'デンパサール';
		CI.GoPort2.options[1].value = 'DPS';
	break;	
	case 'IE':	
		CI.GoPort2.options.length = 5;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ウォーターフォード';
		CI.GoPort2.options[1].value = 'WAT';
		CI.GoPort2.options[2].text = 'ゴールウェイ';
		CI.GoPort2.options[2].value = 'GWY';
		CI.GoPort2.options[3].text = 'ダブリン';
		CI.GoPort2.options[3].value = 'DUB';
		CI.GoPort2.options[4].text = 'リムリック';
		CI.GoPort2.options[4].value = 'LMK';
	break;	
	case 'IL':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'エルサレム';
		CI.GoPort2.options[1].value = 'JRS';
	break;	
	case 'IT':	
		CI.GoPort2.options.length = 25;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アグリジェント';
		CI.GoPort2.options[1].value = 'IT4';
		CI.GoPort2.options[2].text = 'アッシジ';
		CI.GoPort2.options[2].value = 'ASS';
		CI.GoPort2.options[3].text = 'アマルフィ';
		CI.GoPort2.options[3].value = 'I00';
		CI.GoPort2.options[4].text = 'ヴェローナ';
		CI.GoPort2.options[4].value = 'VRN';
		CI.GoPort2.options[5].text = 'カターニャ';
		CI.GoPort2.options[5].value = 'CTA';
		CI.GoPort2.options[6].text = 'コモ';
		CI.GoPort2.options[6].value = 'IT0';
		CI.GoPort2.options[7].text = 'シエナ';
		CI.GoPort2.options[7].value = 'IT1';
		CI.GoPort2.options[8].text = 'ジェノヴァ';
		CI.GoPort2.options[8].value = 'GOA';
		CI.GoPort2.options[9].text = 'シラクーザ';
		CI.GoPort2.options[9].value = 'IT5';
		CI.GoPort2.options[10].text = 'ストレーザ';
		CI.GoPort2.options[10].value = 'I01';
		CI.GoPort2.options[11].text = 'ソレント';
		CI.GoPort2.options[11].value = 'IT7';
		CI.GoPort2.options[12].text = 'タオルミーナ';
		CI.GoPort2.options[12].value = 'IT6';
		CI.GoPort2.options[13].text = 'ナポリ';
		CI.GoPort2.options[13].value = 'NAP';
		CI.GoPort2.options[14].text = 'パドヴァ';
		CI.GoPort2.options[14].value = 'IT2';
		CI.GoPort2.options[15].text = 'パレルモ';
		CI.GoPort2.options[15].value = 'PMO';
		CI.GoPort2.options[16].text = 'ピサ';
		CI.GoPort2.options[16].value = 'PSA';
		CI.GoPort2.options[17].text = 'フィレンツェ';
		CI.GoPort2.options[17].value = 'FLR';
		CI.GoPort2.options[18].text = 'ベニス';
		CI.GoPort2.options[18].value = 'VCE';
		CI.GoPort2.options[19].text = 'ペルージャ';
		CI.GoPort2.options[19].value = 'PEG';
		CI.GoPort2.options[20].text = 'ボローニャ';
		CI.GoPort2.options[20].value = 'BLQ';
		CI.GoPort2.options[21].text = 'ミラノ';
		CI.GoPort2.options[21].value = 'MIL';
		CI.GoPort2.options[22].text = 'モンテカティーニ';
		CI.GoPort2.options[22].value = 'IT8';
		CI.GoPort2.options[23].text = 'ラヴェンナ';
		CI.GoPort2.options[23].value = 'RAN';
		CI.GoPort2.options[24].text = 'ローマ';
		CI.GoPort2.options[24].value = 'ROM';
	break;	
	case 'JO':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アンマン';
		CI.GoPort2.options[1].value = 'AMM';
		CI.GoPort2.options[2].text = 'ペトラ';
		CI.GoPort2.options[2].value = 'JO0';
	break;	
	case 'KR':	
		CI.GoPort2.options.length = 4;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ソウル';
		CI.GoPort2.options[1].value = 'SEL';
		CI.GoPort2.options[2].text = '釜山（プサン）';
		CI.GoPort2.options[2].value = 'PUS';
		CI.GoPort2.options[3].text = '済州島（チェジュ）';
		CI.GoPort2.options[3].value = 'CJU';
	break;	
	case 'LU':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ルクセンブルク';
		CI.GoPort2.options[1].value = 'LUX';
	break;	
	case 'MA':	
		CI.GoPort2.options.length = 6;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'カサブランカ';
		CI.GoPort2.options[1].value = 'CAS';
		CI.GoPort2.options[2].text = 'タンジェ';
		CI.GoPort2.options[2].value = 'TNG';
		CI.GoPort2.options[3].text = 'フェズ';
		CI.GoPort2.options[3].value = 'FEZ';
		CI.GoPort2.options[4].text = 'マラケシュ';
		CI.GoPort2.options[4].value = 'RAK';
		CI.GoPort2.options[5].text = 'ラバト';
		CI.GoPort2.options[5].value = 'RBA';
	break;	
	case 'MC':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'モナコ';
		CI.GoPort2.options[1].value = 'MCM';
	break;	
	case 'MN':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'グアム';
		CI.GoPort2.options[1].value = 'GUM';
		CI.GoPort2.options[2].text = 'サイパン';
		CI.GoPort2.options[2].value = 'SPN';
	break;	
	case 'MT':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'マルタ';
		CI.GoPort2.options[1].value = 'MLA';
	break;	
	case 'MV':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'マーレ（モルディブ）';
		CI.GoPort2.options[1].value = 'MLE';
	break;	
	case 'MY':	
		CI.GoPort2.options.length = 4;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'クアラルンプール';
		CI.GoPort2.options[1].value = 'KUL';
		CI.GoPort2.options[2].text = 'ペナン';
		CI.GoPort2.options[2].value = 'PEN';
		CI.GoPort2.options[3].text = 'ランカウイ';
		CI.GoPort2.options[3].value = 'LGK';
	break;	
	case 'NL':	
		CI.GoPort2.options.length = 5;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アムステルダム';
		CI.GoPort2.options[1].value = 'AMS';
		CI.GoPort2.options[2].text = 'ハーグ';
		CI.GoPort2.options[2].value = 'HAG';
		CI.GoPort2.options[3].text = 'マーストリヒト';
		CI.GoPort2.options[3].value = 'MST';
		CI.GoPort2.options[4].text = 'ロッテルダム';
		CI.GoPort2.options[4].value = 'RTM';
	break;	
	case 'NO':	
		CI.GoPort2.options.length = 4;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'オスロ';
		CI.GoPort2.options[1].value = 'OSL';
		CI.GoPort2.options[2].text = 'ソンダル';
		CI.GoPort2.options[2].value = 'SOG';
		CI.GoPort2.options[3].text = 'ベルゲン';
		CI.GoPort2.options[3].value = 'BGO';
	break;	
	case 'PH':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'セブ';
		CI.GoPort2.options[1].value = 'CEB';
		CI.GoPort2.options[2].text = 'マニラ';
		CI.GoPort2.options[2].value = 'MNL';
	break;	
	case 'PL':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ワルシャワ';
		CI.GoPort2.options[1].value = 'WAW';
	break;	
	case 'PT':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ポルト';
		CI.GoPort2.options[1].value = 'OPO';
		CI.GoPort2.options[2].text = 'リスボン';
		CI.GoPort2.options[2].value = 'LIS';
	break;	
	case 'SE':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'イェーテボリ';
		CI.GoPort2.options[1].value = 'GOT';
		CI.GoPort2.options[2].text = 'ストックホルム';
		CI.GoPort2.options[2].value = 'STO';
	break;	
	case 'SG':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'シンガポール';
		CI.GoPort2.options[1].value = 'SIN';
	break;	
	case 'SK':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ブラティスラバ';
		CI.GoPort2.options[1].value = 'BTS';
	break;	
	case 'TH':	
		CI.GoPort2.options.length = 6;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'サムイ';
		CI.GoPort2.options[1].value = 'USM';
		CI.GoPort2.options[2].text = 'チェンマイ';
		CI.GoPort2.options[2].value = 'CNX';
		CI.GoPort2.options[3].text = 'パタヤ';
		CI.GoPort2.options[3].value = 'PYX';
		CI.GoPort2.options[4].text = 'バンコク';
		CI.GoPort2.options[4].value = 'BKK';
		CI.GoPort2.options[5].text = 'プ−ケット';
		CI.GoPort2.options[5].value = 'HKT';
	break;	
	case 'TN':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'チュニス';
		CI.GoPort2.options[1].value = 'TUN';
	break;	
	case 'TR':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'イスタンブール';
		CI.GoPort2.options[1].value = 'IST';
	break;	
	case 'TW':	
		CI.GoPort2.options.length = 2;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = '台北（タイペイ）';
		CI.GoPort2.options[1].value = 'TPE';
	break;	
	case 'US':	
		CI.GoPort2.options.length = 240;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'アイダホ・フォールズ';
		CI.GoPort2.options[1].value = 'IDA';
		CI.GoPort2.options[2].text = 'アクロン';
		CI.GoPort2.options[2].value = 'CAK';
		CI.GoPort2.options[3].text = 'アトランタ';
		CI.GoPort2.options[3].value = 'ATL';
		CI.GoPort2.options[4].text = 'アトランティック シティ';
		CI.GoPort2.options[4].value = 'AIY';
		CI.GoPort2.options[5].text = 'アナハイム';
		CI.GoPort2.options[5].value = 'ANA';
		CI.GoPort2.options[6].text = 'アナポリス';
		CI.GoPort2.options[6].value = 'ANP';
		CI.GoPort2.options[7].text = 'アバディーン';
		CI.GoPort2.options[7].value = 'ABN';
		CI.GoPort2.options[8].text = 'アバディーン';
		CI.GoPort2.options[8].value = 'ABR';
		CI.GoPort2.options[9].text = 'アビリーン';
		CI.GoPort2.options[9].value = 'ABI';
		CI.GoPort2.options[10].text = 'アラモゴルド';
		CI.GoPort2.options[10].value = 'ALM';
		CI.GoPort2.options[11].text = 'アルバカーキー';
		CI.GoPort2.options[11].value = 'ABQ';
		CI.GoPort2.options[12].text = 'アルバニー';
		CI.GoPort2.options[12].value = 'ALB';
		CI.GoPort2.options[13].text = 'アレンタウン';
		CI.GoPort2.options[13].value = 'ABE';
		CI.GoPort2.options[14].text = 'アンカレッジ';
		CI.GoPort2.options[14].value = 'ANC';
		CI.GoPort2.options[15].text = 'イサカ';
		CI.GoPort2.options[15].value = 'ITH';
		CI.GoPort2.options[16].text = 'インディアナポリス';
		CI.GoPort2.options[16].value = 'IND';
		CI.GoPort2.options[17].text = 'ウィチタ';
		CI.GoPort2.options[17].value = 'ICT';
		CI.GoPort2.options[18].text = 'ウィルミントン';
		CI.GoPort2.options[18].value = 'ILG';
		CI.GoPort2.options[19].text = 'ウエスト・パーム・ ビーチ';
		CI.GoPort2.options[19].value = 'PBI';
		CI.GoPort2.options[20].text = 'ウェストイエローストーン';
		CI.GoPort2.options[20].value = 'WYS';
		CI.GoPort2.options[21].text = 'ウエストチェスター ';
		CI.GoPort2.options[21].value = 'HPN';
		CI.GoPort2.options[22].text = 'ウォーソー';
		CI.GoPort2.options[22].value = 'AUW';
		CI.GoPort2.options[23].text = 'ウォータータウン';
		CI.GoPort2.options[23].value = 'ART';
		CI.GoPort2.options[24].text = 'ウォータールー';
		CI.GoPort2.options[24].value = 'ALO';
		CI.GoPort2.options[25].text = 'エイヴリー アイランド';
		CI.GoPort2.options[25].value = 'ARA';
		CI.GoPort2.options[26].text = 'エリー';
		CI.GoPort2.options[26].value = 'ERI';
		CI.GoPort2.options[27].text = 'エルパソ';
		CI.GoPort2.options[27].value = 'ELP';
		CI.GoPort2.options[28].text = 'オーガスタ';
		CI.GoPort2.options[28].value = 'AGS';
		CI.GoPort2.options[29].text = 'オークハーバー';
		CI.GoPort2.options[29].value = 'ODW';
		CI.GoPort2.options[30].text = 'オースティン';
		CI.GoPort2.options[30].value = 'AUS';
		CI.GoPort2.options[31].text = 'オーランド';
		CI.GoPort2.options[31].value = 'MCO';
		CI.GoPort2.options[32].text = 'オカラ';
		CI.GoPort2.options[32].value = 'OCL';
		CI.GoPort2.options[33].text = 'オクラホマ シティ';
		CI.GoPort2.options[33].value = 'OKC';
		CI.GoPort2.options[34].text = 'オックスナード';
		CI.GoPort2.options[34].value = 'OXR';
		CI.GoPort2.options[35].text = 'オマハ';
		CI.GoPort2.options[35].value = 'OMA';
		CI.GoPort2.options[36].text = 'オレンジカウンティ';
		CI.GoPort2.options[36].value = 'SNA';
		CI.GoPort2.options[37].text = 'オンタリオ';
		CI.GoPort2.options[37].value = 'ONT';
		CI.GoPort2.options[38].text = 'ガーディナー';
		CI.GoPort2.options[38].value = 'GDR';
		CI.GoPort2.options[39].text = 'ガーデンシティ';
		CI.GoPort2.options[39].value = 'GCK';
		CI.GoPort2.options[40].text = 'カーメル';
		CI.GoPort2.options[40].value = 'MRY';
		CI.GoPort2.options[41].text = 'カールスバード';
		CI.GoPort2.options[41].value = 'CLD';
		CI.GoPort2.options[42].text = 'カールスバード';
		CI.GoPort2.options[42].value = 'CNM';
		CI.GoPort2.options[43].text = 'カイエンタ';
		CI.GoPort2.options[43].value = 'MVM';
		CI.GoPort2.options[44].text = 'カウアイ島';
		CI.GoPort2.options[44].value = 'KAU';
		CI.GoPort2.options[45].text = 'ガニソン';
		CI.GoPort2.options[45].value = 'GUC';
		CI.GoPort2.options[46].text = 'カフルイ';
		CI.GoPort2.options[46].value = 'OGG';
		CI.GoPort2.options[47].text = 'カラマズー';
		CI.GoPort2.options[47].value = 'AZO';
		CI.GoPort2.options[48].text = 'カリスペル';
		CI.GoPort2.options[48].value = 'FCA';
		CI.GoPort2.options[49].text = 'ガルブストン';
		CI.GoPort2.options[49].value = 'GLS';
		CI.GoPort2.options[50].text = 'ガルフポート';
		CI.GoPort2.options[50].value = 'GPT';
		CI.GoPort2.options[51].text = 'カンサスシティ';
		CI.GoPort2.options[51].value = 'MKC';
		CI.GoPort2.options[52].text = 'キー ラルゴ';
		CI.GoPort2.options[52].value = 'KYL';
		CI.GoPort2.options[53].text = 'キーウエスト';
		CI.GoPort2.options[53].value = 'EYW';
		CI.GoPort2.options[54].text = 'キーヌ';
		CI.GoPort2.options[54].value = 'EEN';
		CI.GoPort2.options[55].text = 'キャニオンランズ';
		CI.GoPort2.options[55].value = 'CNY';
		CI.GoPort2.options[56].text = 'ギャラップ';
		CI.GoPort2.options[56].value = 'GUP';
		CI.GoPort2.options[57].text = 'キングマン';
		CI.GoPort2.options[57].value = 'IGM';
		CI.GoPort2.options[58].text = 'クーズ ベイ';
		CI.GoPort2.options[58].value = 'OTH';
		CI.GoPort2.options[59].text = 'グランド・ジャンクソン';
		CI.GoPort2.options[59].value = 'GJT';
		CI.GoPort2.options[60].text = 'グランドキャニオン国立公園';
		CI.GoPort2.options[60].value = 'GCP';
		CI.GoPort2.options[61].text = 'グランドフォークス';
		CI.GoPort2.options[61].value = 'GFK';
		CI.GoPort2.options[62].text = 'グランドラピッズ';
		CI.GoPort2.options[62].value = 'GRR';
		CI.GoPort2.options[63].text = 'クリアウォータービーチ';
		CI.GoPort2.options[63].value = 'CLW';
		CI.GoPort2.options[64].text = 'クリーブランド';
		CI.GoPort2.options[64].value = 'CLE';
		CI.GoPort2.options[65].text = 'グリーンビル';
		CI.GoPort2.options[65].value = 'GSP';
		CI.GoPort2.options[66].text = 'グリーンベイ';
		CI.GoPort2.options[66].value = 'GRB';
		CI.GoPort2.options[67].text = 'グレート ベンド';
		CI.GoPort2.options[67].value = 'GBD';
		CI.GoPort2.options[68].text = 'グレート・フォールズ';
		CI.GoPort2.options[68].value = 'GTF';
		CI.GoPort2.options[69].text = 'クレセントシティ';
		CI.GoPort2.options[69].value = 'CEC';
		CI.GoPort2.options[70].text = 'ゲインズビル';
		CI.GoPort2.options[70].value = 'GNV';
		CI.GoPort2.options[71].text = 'ケープコッド';
		CI.GoPort2.options[71].value = 'CCD';
		CI.GoPort2.options[72].text = 'ケチカン';
		CI.GoPort2.options[72].value = 'KTN';
		CI.GoPort2.options[73].text = 'ココア ビーチ';
		CI.GoPort2.options[73].value = 'CCB';
		CI.GoPort2.options[74].text = 'コディアック';
		CI.GoPort2.options[74].value = 'ADQ';
		CI.GoPort2.options[75].text = 'コディー';
		CI.GoPort2.options[75].value = 'COD';
		CI.GoPort2.options[76].text = 'コナ';
		CI.GoPort2.options[76].value = 'KOA';
		CI.GoPort2.options[77].text = 'コロラドスプリングス';
		CI.GoPort2.options[77].value = 'COS';
		CI.GoPort2.options[78].text = 'コロンバス';
		CI.GoPort2.options[78].value = 'CMH';
		CI.GoPort2.options[79].text = 'サウスベリー';
		CI.GoPort2.options[79].value = 'SOB';
		CI.GoPort2.options[80].text = 'サクラメント';
		CI.GoPort2.options[80].value = 'SMF';
		CI.GoPort2.options[81].text = 'サバンナ';
		CI.GoPort2.options[81].value = 'SAV';
		CI.GoPort2.options[82].text = 'サラソタ';
		CI.GoPort2.options[82].value = 'SRQ';
		CI.GoPort2.options[83].text = 'サンアントニオ';
		CI.GoPort2.options[83].value = 'SAT';
		CI.GoPort2.options[84].text = 'サンタバーバラ';
		CI.GoPort2.options[84].value = 'SBA';
		CI.GoPort2.options[85].text = 'サンタフェ';
		CI.GoPort2.options[85].value = 'SAF';
		CI.GoPort2.options[86].text = 'サンディエゴ';
		CI.GoPort2.options[86].value = 'SAN';
		CI.GoPort2.options[87].text = 'サンノゼ';
		CI.GoPort2.options[87].value = 'SJC';
		CI.GoPort2.options[88].text = 'サンバレー';
		CI.GoPort2.options[88].value = 'SUN';
		CI.GoPort2.options[89].text = 'サンフランシスコ';
		CI.GoPort2.options[89].value = 'SFO';
		CI.GoPort2.options[90].text = 'シアトル';
		CI.GoPort2.options[90].value = 'SEA';
		CI.GoPort2.options[91].text = 'シーダーシティー';
		CI.GoPort2.options[91].value = 'CDC';
		CI.GoPort2.options[92].text = 'シーダーラピッツ';
		CI.GoPort2.options[92].value = 'CID';
		CI.GoPort2.options[93].text = 'シェナンドーバレー';
		CI.GoPort2.options[93].value = 'SHD';
		CI.GoPort2.options[94].text = 'シェレベポート';
		CI.GoPort2.options[94].value = 'SHV';
		CI.GoPort2.options[95].text = 'シカゴ';
		CI.GoPort2.options[95].value = 'CHI';
		CI.GoPort2.options[96].text = 'シボドー';
		CI.GoPort2.options[96].value = 'TBD';
		CI.GoPort2.options[97].text = 'シャーロッテビル';
		CI.GoPort2.options[97].value = 'CHO';
		CI.GoPort2.options[98].text = 'シャーロット';
		CI.GoPort2.options[98].value = 'CLT';
		CI.GoPort2.options[99].text = 'シャイアン';
		CI.GoPort2.options[99].value = 'CYS';
		CI.GoPort2.options[100].text = 'ジャクソン';
		CI.GoPort2.options[100].value = 'JAN';
		CI.GoPort2.options[101].text = 'ジャクソン ';
		CI.GoPort2.options[101].value = 'JAC';
		CI.GoPort2.options[102].text = 'シラキュース';
		CI.GoPort2.options[102].value = 'SYR';
		CI.GoPort2.options[103].text = 'シンシナティ';
		CI.GoPort2.options[103].value = 'CVG';
		CI.GoPort2.options[104].text = 'スーフォールズ';
		CI.GoPort2.options[104].value = 'FSD';
		CI.GoPort2.options[105].text = 'スコッツデール';
		CI.GoPort2.options[105].value = 'ZSY';
		CI.GoPort2.options[106].text = 'スティームボートスプリングス';
		CI.GoPort2.options[106].value = 'SBS';
		CI.GoPort2.options[107].text = 'スポケーン';
		CI.GoPort2.options[107].value = 'GEG';
		CI.GoPort2.options[108].text = 'セント オーガスティン';
		CI.GoPort2.options[108].value = 'SGJ';
		CI.GoPort2.options[109].text = 'セント・ジョージ';
		CI.GoPort2.options[109].value = 'SGU';
		CI.GoPort2.options[110].text = 'セントルイス';
		CI.GoPort2.options[110].value = 'STL';
		CI.GoPort2.options[111].text = 'ソルトレイクシティ';
		CI.GoPort2.options[111].value = 'SLC';
		CI.GoPort2.options[112].text = 'ソワード';
		CI.GoPort2.options[112].value = 'SWD';
		CI.GoPort2.options[113].text = 'タイラー';
		CI.GoPort2.options[113].value = 'TYR';
		CI.GoPort2.options[114].text = 'ダラス';
		CI.GoPort2.options[114].value = 'DAL';
		CI.GoPort2.options[115].text = 'ダルース';
		CI.GoPort2.options[115].value = 'DLH';
		CI.GoPort2.options[116].text = 'タルサ';
		CI.GoPort2.options[116].value = 'TUL';
		CI.GoPort2.options[117].text = 'タンパ';
		CI.GoPort2.options[117].value = 'TPA';
		CI.GoPort2.options[118].text = 'チャールストン';
		CI.GoPort2.options[118].value = 'CHS';
		CI.GoPort2.options[119].text = 'ツイン・フォールズ';
		CI.GoPort2.options[119].value = 'TWF';
		CI.GoPort2.options[120].text = 'ツーソン';
		CI.GoPort2.options[120].value = 'TUS';
		CI.GoPort2.options[121].text = 'ディキンソン';
		CI.GoPort2.options[121].value = 'DIC';
		CI.GoPort2.options[122].text = 'デイトナ・ビーチ';
		CI.GoPort2.options[122].value = 'DAB';
		CI.GoPort2.options[123].text = 'デイトン';
		CI.GoPort2.options[123].value = 'DAY';
		CI.GoPort2.options[124].text = 'テクサルカナ';
		CI.GoPort2.options[124].value = 'TXK';
		CI.GoPort2.options[125].text = 'デスティン';
		CI.GoPort2.options[125].value = 'DES';
		CI.GoPort2.options[126].text = 'デトロイト';
		CI.GoPort2.options[126].value = 'DTT';
		CI.GoPort2.options[127].text = 'デューモント';
		CI.GoPort2.options[127].value = 'BPT';
		CI.GoPort2.options[128].text = 'デンバー';
		CI.GoPort2.options[128].value = 'DEN';
		CI.GoPort2.options[129].text = 'ドゥランゴ';
		CI.GoPort2.options[129].value = 'DRO';
		CI.GoPort2.options[130].text = 'トレド';
		CI.GoPort2.options[130].value = 'TLD';
		CI.GoPort2.options[131].text = 'ナシュア';
		CI.GoPort2.options[131].value = 'ASH';
		CI.GoPort2.options[132].text = 'ナッシュビル';
		CI.GoPort2.options[132].value = 'BNA';
		CI.GoPort2.options[133].text = 'ニューアーク';
		CI.GoPort2.options[133].value = 'EWR';
		CI.GoPort2.options[134].text = 'ニューオリンズ';
		CI.GoPort2.options[134].value = 'MSY';
		CI.GoPort2.options[135].text = 'ニューポート ビーチ';
		CI.GoPort2.options[135].value = 'JNP';
		CI.GoPort2.options[136].text = 'ニューポートニュース';
		CI.GoPort2.options[136].value = 'PHF';
		CI.GoPort2.options[137].text = 'ニューヨーク';
		CI.GoPort2.options[137].value = 'NYC';
		CI.GoPort2.options[138].text = 'ネイプルズ／マーコ アイランド';
		CI.GoPort2.options[138].value = 'APF';
		CI.GoPort2.options[139].text = 'ノーフォーク';
		CI.GoPort2.options[139].value = 'ORF';
		CI.GoPort2.options[140].text = 'ノックスビル';
		CI.GoPort2.options[140].value = 'TYS';
		CI.GoPort2.options[141].text = 'バーミンガム';
		CI.GoPort2.options[141].value = 'BHM';
		CI.GoPort2.options[142].text = 'パーム ハーバー';
		CI.GoPort2.options[142].value = 'PMH';
		CI.GoPort2.options[143].text = 'パーム・スプリングス';
		CI.GoPort2.options[143].value = 'PSP';
		CI.GoPort2.options[144].text = 'バーリントン';
		CI.GoPort2.options[144].value = 'BTV';
		CI.GoPort2.options[145].text = 'パサデナ';
		CI.GoPort2.options[145].value = 'JPD';
		CI.GoPort2.options[146].text = 'パスコ';
		CI.GoPort2.options[146].value = 'PSC';
		CI.GoPort2.options[147].text = 'バッファロー';
		CI.GoPort2.options[147].value = 'BUF';
		CI.GoPort2.options[148].text = 'バトンルージュ';
		CI.GoPort2.options[148].value = 'BTR';
		CI.GoPort2.options[149].text = 'ハリスバーグ';
		CI.GoPort2.options[149].value = 'HAR';
		CI.GoPort2.options[150].text = 'バルドスタ';
		CI.GoPort2.options[150].value = 'VLD';
		CI.GoPort2.options[151].text = 'バンガー';
		CI.GoPort2.options[151].value = 'BGR';
		CI.GoPort2.options[152].text = 'ハンコック';
		CI.GoPort2.options[152].value = 'CMX';
		CI.GoPort2.options[153].text = 'ハンツビル';
		CI.GoPort2.options[153].value = 'HSV';
		CI.GoPort2.options[154].text = 'ビスマーク';
		CI.GoPort2.options[154].value = 'BIS';
		CI.GoPort2.options[155].text = 'ビッグ スカイ';
		CI.GoPort2.options[155].value = 'BSY';
		CI.GoPort2.options[156].text = 'ピッツバーグ';
		CI.GoPort2.options[156].value = 'PIT';
		CI.GoPort2.options[157].text = 'ピット／グリーン ビル';
		CI.GoPort2.options[157].value = 'PGV';
		CI.GoPort2.options[158].text = 'ヒューストン';
		CI.GoPort2.options[158].value = 'HOU';
		CI.GoPort2.options[159].text = 'ビュート';
		CI.GoPort2.options[159].value = 'BTM';
		CI.GoPort2.options[160].text = 'ヒューロン';
		CI.GoPort2.options[160].value = 'HON';
		CI.GoPort2.options[161].text = 'ビリングス';
		CI.GoPort2.options[161].value = 'BIL';
		CI.GoPort2.options[162].text = 'ヒルトン ヘッド アイランド';
		CI.GoPort2.options[162].value = 'HHH';
		CI.GoPort2.options[163].text = 'ヒロ（ハワイ島）';
		CI.GoPort2.options[163].value = 'ITO';
		CI.GoPort2.options[164].text = 'ビンガムトン';
		CI.GoPort2.options[164].value = 'BGM';
		CI.GoPort2.options[165].text = 'フィラデルフィア';
		CI.GoPort2.options[165].value = 'PHL';
		CI.GoPort2.options[166].text = 'フェーエットビル';
		CI.GoPort2.options[166].value = 'FYV';
		CI.GoPort2.options[167].text = 'フェニックス';
		CI.GoPort2.options[167].value = 'PHX';
		CI.GoPort2.options[168].text = 'フォート ワース';
		CI.GoPort2.options[168].value = 'FWT';
		CI.GoPort2.options[169].text = 'フォート・ローダーデール';
		CI.GoPort2.options[169].value = 'FLL';
		CI.GoPort2.options[170].text = 'フォートウェイン';
		CI.GoPort2.options[170].value = 'FWA';
		CI.GoPort2.options[171].text = 'フラッグスタッフ';
		CI.GoPort2.options[171].value = 'FLG';
		CI.GoPort2.options[172].text = 'プラッツバーグ';
		CI.GoPort2.options[172].value = 'PLB';
		CI.GoPort2.options[173].text = 'ブル ヘッド シティ';
		CI.GoPort2.options[173].value = 'IFP';
		CI.GoPort2.options[174].text = 'プレスコット';
		CI.GoPort2.options[174].value = 'PRC';
		CI.GoPort2.options[175].text = 'フレスノ';
		CI.GoPort2.options[175].value = 'FAT';
		CI.GoPort2.options[176].text = 'プロヴィデンス';
		CI.GoPort2.options[176].value = 'PVD';
		CI.GoPort2.options[177].text = 'ペイジ';
		CI.GoPort2.options[177].value = 'PGA';
		CI.GoPort2.options[178].text = 'ベイシティ';
		CI.GoPort2.options[178].value = 'MBS';
		CI.GoPort2.options[179].text = 'ベーカーズフィールド';
		CI.GoPort2.options[179].value = 'BFL';
		CI.GoPort2.options[180].text = 'ベミジ';
		CI.GoPort2.options[180].value = 'BJI';
		CI.GoPort2.options[181].text = 'ベリンガム';
		CI.GoPort2.options[181].value = 'BLI';
		CI.GoPort2.options[182].text = 'ベンド';
		CI.GoPort2.options[182].value = 'RDM';
		CI.GoPort2.options[183].text = 'ボイシ';
		CI.GoPort2.options[183].value = 'BOI';
		CI.GoPort2.options[184].text = 'ポーカテロ';
		CI.GoPort2.options[184].value = 'PIH';
		CI.GoPort2.options[185].text = 'ポートエンジェルス';
		CI.GoPort2.options[185].value = 'CLM';
		CI.GoPort2.options[186].text = 'ポートランド（オレゴン）';
		CI.GoPort2.options[186].value = 'PDX';
		CI.GoPort2.options[187].text = 'ボカ ラトン';
		CI.GoPort2.options[187].value = 'BCT';
		CI.GoPort2.options[188].text = 'ボストン';
		CI.GoPort2.options[188].value = 'BOS';
		CI.GoPort2.options[189].text = 'ボゼマン';
		CI.GoPort2.options[189].value = 'BZN';
		CI.GoPort2.options[190].text = 'ホットスプリングス';
		CI.GoPort2.options[190].value = 'HOT';
		CI.GoPort2.options[191].text = 'ホノルル（オアフ島）';
		CI.GoPort2.options[191].value = 'HNL';
		CI.GoPort2.options[192].text = 'ボルティモア';
		CI.GoPort2.options[192].value = 'BWI';
		CI.GoPort2.options[193].text = 'ホルブルック';
		CI.GoPort2.options[193].value = 'HBR';
		CI.GoPort2.options[194].text = 'マートル・ビーチ';
		CI.GoPort2.options[194].value = 'MYR';
		CI.GoPort2.options[195].text = 'マイアミ';
		CI.GoPort2.options[195].value = 'MIA';
		CI.GoPort2.options[196].text = 'マイルズ シティ';
		CI.GoPort2.options[196].value = 'MLS';
		CI.GoPort2.options[197].text = 'ミズーラ';
		CI.GoPort2.options[197].value = 'MSO';
		CI.GoPort2.options[198].text = 'ミスティック';
		CI.GoPort2.options[198].value = 'MYC';
		CI.GoPort2.options[199].text = 'ミッチェル';
		CI.GoPort2.options[199].value = 'MHE';
		CI.GoPort2.options[200].text = 'ミネアポリス';
		CI.GoPort2.options[200].value = 'MSP';
		CI.GoPort2.options[201].text = 'ミノー';
		CI.GoPort2.options[201].value = 'MOT';
		CI.GoPort2.options[202].text = 'ミルウォーキー';
		CI.GoPort2.options[202].value = 'MKE';
		CI.GoPort2.options[203].text = 'メルボルン';
		CI.GoPort2.options[203].value = 'MLB';
		CI.GoPort2.options[204].text = 'メンフィス';
		CI.GoPort2.options[204].value = 'MEM';
		CI.GoPort2.options[205].text = 'モデスト';
		CI.GoPort2.options[205].value = 'MOD';
		CI.GoPort2.options[206].text = 'モロカイ島';
		CI.GoPort2.options[206].value = 'MKK';
		CI.GoPort2.options[207].text = 'モントローズ';
		CI.GoPort2.options[207].value = 'MTJ';
		CI.GoPort2.options[208].text = 'ヤキマ';
		CI.GoPort2.options[208].value = 'YKM';
		CI.GoPort2.options[209].text = 'ユージーン';
		CI.GoPort2.options[209].value = 'EUG';
		CI.GoPort2.options[210].text = 'ユーレカ';
		CI.GoPort2.options[210].value = 'ACV';
		CI.GoPort2.options[211].text = 'ユマ';
		CI.GoPort2.options[211].value = 'YUM';
		CI.GoPort2.options[212].text = 'ヨセミテ国立公園';
		CI.GoPort2.options[212].value = 'OYS';
		CI.GoPort2.options[213].text = 'ラスクルーチェス';
		CI.GoPort2.options[213].value = 'LRU';
		CI.GoPort2.options[214].text = 'ラスベガス';
		CI.GoPort2.options[214].value = 'LAS';
		CI.GoPort2.options[215].text = 'ラファイエット';
		CI.GoPort2.options[215].value = 'LFT';
		CI.GoPort2.options[216].text = 'ランカスター';
		CI.GoPort2.options[216].value = 'LNS';
		CI.GoPort2.options[217].text = 'ランシング';
		CI.GoPort2.options[217].value = 'LAN';
		CI.GoPort2.options[218].text = 'リッチモンド';
		CI.GoPort2.options[218].value = 'RIC';
		CI.GoPort2.options[219].text = 'リトルロック';
		CI.GoPort2.options[219].value = 'LIT';
		CI.GoPort2.options[220].text = 'リノ';
		CI.GoPort2.options[220].value = 'RNO';
		CI.GoPort2.options[221].text = 'リンカーン';
		CI.GoPort2.options[221].value = 'LNK';
		CI.GoPort2.options[222].text = 'リンチバーグ';
		CI.GoPort2.options[222].value = 'LYH';
		CI.GoPort2.options[223].text = 'ルーイズビル';
		CI.GoPort2.options[223].value = 'SDF';
		CI.GoPort2.options[224].text = 'ルトランド';
		CI.GoPort2.options[224].value = 'RUT';
		CI.GoPort2.options[225].text = 'レイク タホ （カリフォルニア サイド）';
		CI.GoPort2.options[225].value = 'TVL';
		CI.GoPort2.options[226].text = 'レイク ハバス シティ';
		CI.GoPort2.options[226].value = 'HII';
		CI.GoPort2.options[227].text = 'レイク・チャールズ';
		CI.GoPort2.options[227].value = 'LCH';
		CI.GoPort2.options[228].text = 'レキシントン';
		CI.GoPort2.options[228].value = 'LEX';
		CI.GoPort2.options[229].text = 'ローアノーク';
		CI.GoPort2.options[229].value = 'ROA';
		CI.GoPort2.options[230].text = 'ローリー';
		CI.GoPort2.options[230].value = 'RDU';
		CI.GoPort2.options[231].text = 'ロサンゼルス';
		CI.GoPort2.options[231].value = 'LAX';
		CI.GoPort2.options[232].text = 'ロチェスター（NY）';
		CI.GoPort2.options[232].value = 'ROC';
		CI.GoPort2.options[233].text = 'ロックフォード';
		CI.GoPort2.options[233].value = 'RFD';
		CI.GoPort2.options[234].text = 'ロングアイランド';
		CI.GoPort2.options[234].value = 'ISP';
		CI.GoPort2.options[235].text = 'ロングビーチ';
		CI.GoPort2.options[235].value = 'LGB';
		CI.GoPort2.options[236].text = 'ワコー';
		CI.GoPort2.options[236].value = 'ACT';
		CI.GoPort2.options[237].text = 'ワシントン';
		CI.GoPort2.options[237].value = 'WAS';
		CI.GoPort2.options[238].text = 'ワラワラ';
		CI.GoPort2.options[238].value = 'ALW';
		CI.GoPort2.options[239].text = '北部ニュージャージー';
		CI.GoPort2.options[239].value = 'NNJ';
	break;	
	case 'VN':	
		CI.GoPort2.options.length = 3;
		CI.GoPort2.options[0].text = '都市を選択----↓';
		CI.GoPort2.options[0].value = '';
		CI.GoPort2.options[1].text = 'ハノイ';
		CI.GoPort2.options[1].value = 'HAN';
		CI.GoPort2.options[2].text = 'ホーチミン';
		CI.GoPort2.options[2].value = 'SGN';
	break;	
	default:	
		CI.GoPort2.options.length = 1;
		CI.GoPort2.options[0].text = '↑↑↑↑↑方面を選択';
		CI.GoPort2.options[0].value = '';
	break;


    }    return true;
}

