function showMap(option) {
  if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById(option.id));
		if(option.control){
			map.addControl(new GSmallMapControl());
		}
		if(option.type){
			map.addControl(new GMapTypeControl());
		}
		map.setCenter(new GLatLng(option.point[0],option.point[1]),15);

		if(option.title){
			var html = '<p><strong>'+option.title+'</strong></p>';
			if(option.address){
				html += '<p>'+option.address+'</p>';
			}
			if(option.link){
				html += '<p><a href="'+option.link+'">'+option.link+'</a></p>'
			}
			map.openInfoWindowHtml(map.getCenter(),html);
		}
	}
}

