 		// Create a base icon for all of our markers that specifies the
// shadow, icon dimensions, etc.
      // ==================================================
      // A function to create a tabbed marker (two tabs) and set up the event window
      function createTabbedMarker2(IdStazione,point,label1,html1,label2,html2,icon) {
	   opts = {
          "icon": icon,
          "clickable": true,
          "labelText": value,
		  "labelOffset": new GSize(-24,-41)
        };

        var marker2 = new LabeledMarker(point, opts);
        GEvent.addListener(marker2, "click", function() {
          marker2.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2)]);
        });
		//GEvent.addListener(marker2, "mouseout", function() {
		//	marker2.closeInfoWindow();
		//		});
        return marker2;
      }
      // ==================================================
      // A function to create a tabbed marker (one tab) and set up the event window
      function createTabbedMarker1(IdStazione,point,label1,html1,icon) {
        var marker1 = new GMarker(point,icon);
        GEvent.addListener(marker1, "click", function() {
          marker1.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1)]);
        });
		//GEvent.addListener(marker1, "mouseout", function() {
		//	marker1.closeInfoWindow();
		//		});
        return marker1;
      }
      // ==================================================
      // A function to create a tabbed marker (two tabs) and set up the event window (only for WIND icons)
      function createTabbedMarkerWIND(IdStazione,point,label1,html1,label2,html2,icon) {
	   opts = {
          "icon": icon,
          "clickable": true,
          "labelText": value,
		  "labelOffset": new GSize(-24,-08)
        };

        var markerWIND = new LabeledMarker(point, opts);
        GEvent.addListener(markerWIND, "click", function() {
          markerWIND.openInfoWindowTabsHtml([new GInfoWindowTab(label1,html1), new GInfoWindowTab(label2,html2)]);
        });
        return markerWIND;
      }
      // ==================================================
