var my_data = {
  zoom: 4,
  start:{x:136.5, y:37.0},
  1:{
			x:139.7491028,
			y:35.6386814,
			name:'本店',
			address:'〒108-0023<br />東京都港区芝浦4丁目18番32号<br />TTKキャナルサイドビル',
			tel:'03-3451-1141',
			fax:'03-5232-3334',
			access:'JR山手・京浜東北線 田町駅より徒歩10分'
  },
  2:{
			x:141.3534826040268,
			y:43.063189449892775,
			name:'北海道支店',
			address:'〒060-0001<br />札幌市中央区北1条西2丁目1番地<br />札幌時計台ビル',
			tel:'011-221-7725',
			fax:'011-222-0383',
			access:''
  },
  3:{
			x:135.5003372,
			y:34.7258006,
			name:'大阪支店',
			address:'〒532-0011<br />大阪市淀川区西中島3丁目15番7号<br />新大阪プリンスビル',
			tel:'06-6307-2480',
			fax:'06-6307-2481',
			access:''
  },
  4:{
			x:140.8683921,
			y:38.2653125,
			name:'仙台営業所',
			address:'〒980-0803<br />仙台市青葉区国分町2丁目14番24号<br />仙台松井ビル',
			tel:'022-223-9088',
			fax:'022-265-4153',
			access:''
  },
  6:{
			x:136.9142419,
			y:35.1690122,
			name:'名古屋営業所',
			address:'〒460-0008<br />名古屋市中区栄4丁目6番15号<br />フォーティーンヒルズセンタービル',
			tel:'052-241-0440',
			fax:'052-263-9885',
			access:''
  },
  7:{
			x:132.4645638,
			y:34.395952,
			name:'広島営業所',
			address:'〒730-0017<br />広島市中区鉄砲町5番7号<br />広島偕成ビル',
			tel:'082-223-7821',
			fax:'082-223-0633',
			access:''
  },
  8:{
			x:130.4004405,
			y:33.594132,
			name:'福岡営業所',
			address:'〒810-0001<br />福岡市中央区天神4丁目1番18号<br />サンビル',
			tel:'092-771-6346',
			fax:'092-752-0486',
			access:''
  },
  9:{
			x:127.6814146,
			y:26.2176091,
			name:'沖縄営業所',
			address:'〒900-0015<br />那覇市久茂地2丁目10番16号<br />南栄ビル',
			tel:'098-863-6460',
			fax:'098-866-5061',
			access:''
  },
  10:{
			x:140.4455824,
			y:36.343661,
			name:'茨城営業所',
			address:'〒310-0852<br />茨城県水戸市笠原町978番25<br />茨城県開発公社ビル',
			tel:'029-305-8870',
			fax:'029-305-8871',
			access:''
  },
  11:{
			x:131.5637603,
			y:34.0174224,
			name:'防府工場・山口事務所',
			address:'〒747-0833<br />山口県防府市浜方283番1',
			tel:'0835-23-6293',
			fax:'0835-24-4912',
			access:'JR山陽本線防府駅より車で約5分'
  },
  12:{
			x:140.0283114,
			y:35.9328328,
			name:'本社・取手工場',
			address:'〒302-0038<br />茨城県取手市下高井1020番地',
			tel:'0297-78-1111',
			fax:'0297-78-2681',
			access:'取手駅より車で約15分'
  },
  13:{
			x:140.071311,
			y:35.979381,
			name:'筑波機材センター',
			address:'〒300-2311<br />茨城県つくばみらい市野堀479',
			tel:'0297-58-1152',
			fax:'0297-58-5037',
			access:''
  }
}

function getDetailData(id) {
  var txt = '<div class="mapBalloon" style="width:350px;">';
  txt += '<h3>' + my_data[id].name + '</h3>\n<dl class="clearfix">';
  if(my_data[id].address){
    txt += '<dt>所在地：</dt><dd>' + my_data[id].address + '</dd>';
  }
  if(my_data[id].tel){
    txt += '<dt>TEL：</dt><dd>' + my_data[id].tel + '</dd>\n';
  }
  if(my_data[id].fax){
    txt += '<dt>FAX：</dt><dd>' + my_data[id].fax + '</dd>';
  }
  if(my_data[id].access){
    txt += '<dt>交通：</dt><dd>' + my_data[id].access + '</dd>';
  }
  txt += '</dl></div>';

  return txt;
}
