	    function createMarker(point,html) {
	        var marker = new GMarker(point); 
	        GEvent.addListener(marker, "click", function() {
	          marker.openInfoWindowHtml(html);
	        });
	        return marker;
	      }
 
