/**
 * company-card.js
 *
 * @author collomb
 * @version 1.0
 */

$("#EtabId").change(onBranchChange);

$(".tdTooltip a").attr('target', '_blank');

function onBranchChange() {
	var id = $(this).val();
	$("table.branch").hide();
	$("#branch" + id).show();
	centerMapAndPlaceMarker(new GLatLng($("#mapLat"+id).val(),$("#mapLng"+id).val()),parseInt($("#mapZoom"+id).val()));
	map.setMapType(mapTypes[$("#mapType"+id).val()]);
}
