

    
      function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	function createHotelMarker(point,html) {
		var marker = new GMarker(point,icon);
		GEvent.addListener(marker, "click", function() {
			marker.openInfoWindowHtml(html);
		});
		return marker;
	}
	
	
		var icon = new GIcon();
		icon.image = "http://www.hotel-assist.com/ha-hotel-pin.png";
		icon.iconSize = new GSize(27, 44);
		icon.shadowSize = new GSize(0, 0);
		icon.iconAnchor = new GPoint(14, 44);
		icon.infoWindowAnchor = new GPoint(18, 38);