var prefs=["名古屋市内","愛知県内","岐阜県内","三重県内","静岡県内","長野県内","北陸地区"];
var cities=[		
           ["トラベルワンダーランド名古屋","トラベルワンダーランド名古屋アバンティ&オアシス","トラベルワンダーランド名古屋エグゼクティブセクション","トラベルバザール名駅","トラベルバザール名駅アバンティ&オアシス","トラベルバザール名駅エグゼクティブセクション","藤ヶ丘営業所","伏見営業所","名古屋団体営業所","名古屋法人営業所","金山営業所","本山営業所","トラベルエクスプレス名古屋パルコ","栄大津通り営業所","八事営業所","平針営業所","大曽根営業所","名古屋国内営業所"],
           ["一宮営業所","勝川営業所","豊田営業所","岡崎営業所","豊橋営業所","刈谷営業所","クラシティ半田営業所","どこでもドア犬山店"],
           ["トラベルバザール岐阜","大垣営業所","どこでもドア多治見店"],
           ["四日市営業所","津営業所","桑名営業所"],
           ["浜松営業所","浜松アバンティ&オアシス","静岡営業所","沼津営業所"],
           ["長野営業所","松本パルコ営業所"],
           ["金沢営業所","富山営業所","福井営業所"],
          ];
var c=[
      ["http://www.lococom.jp/cu/his_204/","http://www.lococom.jp/cu/his_254/","http://www.lococom.jp/cu/his_255/","http://www.lococom.jp/cu/his_229/","http://www.lococom.jp/cu/his_454/","http://www.lococom.jp/cu/his_455/","http://www.lococom.jp/cu/his_265/","http://www.lococom.jp/cu/his_236/","dantai.htm","hojin.htm","http://www.lococom.jp/cu/his_288/","http://www.lococom.jp/cu/his_225/","http://www.lococom.jp/cu/his_292/","http://www.lococom.jp/cu/his_463/","http://www.lococom.jp/cu/his_298/","http://www.lococom.jp/cu/his_452/","http://www.lococom.jp/cu/his_280/","http://www.lococom.jp/cu/his_273/"],
      ["http://www.lococom.jp/cu/his_286/","http://www.lococom.jp/cu/his_453/","http://www.lococom.jp/cu/his_240/","http://www.lococom.jp/cu/his_238/","http://www.lococom.jp/cu/his_259/","http://www.lococom.jp/cu/his_291/","http://www.lococom.jp/cu/his_459/","http://www.lococom.jp/cu/his_833/"],
      ["http://www.lococom.jp/cu/his_223/","http://www.lococom.jp/cu/his_244/","http://www.lococom.jp/cu/his_824/"],
      ["http://www.lococom.jp/cu/his_228/","http://www.lococom.jp/cu/his_279/","http://www.lococom.jp/cu/his_458/"],
      ["http://www.lococom.jp/cu/his_211/","http://www.lococom.jp/cu/his_451/","http://www.lococom.jp/cu/his_033/","http://www.lococom.jp/cu/his_081/"],
      ["http://www.lococom.jp/cu/his_247/","http://www.lococom.jp/cu/his_237/"],
      ["http://www.lococom.jp/cu/his_206/","http://www.lococom.jp/cu/his_243/","http://www.lococom.jp/cu/his_266/"],
      ];
function funcMain(ind)
{
	document.formMain.city.length = 1;
	document.formMain.city.selectedIndex = 0;
	if (ind==0) return;
	var city = cities[ind - 1];
	document.formMain.city.length = city.length + 1;
	for (var i = 0; i < city.length; i++) document.formMain.city.options[i + 1]=new Option(city[i],i);
}
function setPrice(ind)
{
	if (ind==0)
	{
		document.formMain.price.value="";
		return;
	}
	document.formMain.price.value=c[document.formMain.pref.selectedIndex-1][ind-1];
}
function menulink(jump)
{
  var che=0;
    if (document.formMain.price.value != "")
      {
         che= document.formMain.price.value.indexOf('+');
           if (che==-1)
		{
		    var url = jump;
		    document.formMain.pref.selectedIndex = 0;
	          document.formMain.city.selectedIndex = 0;
		    document.formMain.price.value= "";
                window.location=url;		
		}
		else
			{
			 	alert("Please select your departure MONTH. ")				
              	}	
	}
      else 
	     {
            	alert("（方面）と（営業所）をお選び下さい。")
           }
}