function createMarker(map,markerOptions,lat,long,url)
{
	var point = new GLatLng(lat,long);
	var marker = new GMarker(point,markerOptions);
	
	var actionClick = function () {    window.location.href = url;};
	GEvent.addListener(marker, "click", actionClick);
	
	var afficherInfos = function() {    
	//marker.openInfoWindowHtml(document.createTextNode(region));
	//map.openInfoWindow(point, document.createTextNode("Université Technologique de Compiègne")); EXEMPLE
	//marker.openInfoWindowHtml(region, {maxWidth: 50}); MARCHE AUSSI
	};
	
	GEvent.addListener(marker, "mouseover", afficherInfos);
	
	return marker;
}
