/*function createPoint(point, html_1, html_2, html_3, typeicon) {
 	var marker = new GMarker(point, typeicon);
	GEvent.addListener(marker, "click", function() {
		var infoTabs = [new GInfoWindowTab("annonce", html_1), new GInfoWindowTab("photos", html_2)];
		marker.openInfoWindowTabsHtml(infoTabs);
	});
}*/
function createMarker(point, legende, icon) {
	var marker = new GMarker(point, icon);
	GEvent.addListener(marker, 'click', function() {
		marker.openInfoWindowHtml(legende);
	});
	return marker;
}
