    var map;
    var baseIcon;
    var markers = new Array(); //Pointers to marker info window methods
    var markers_by_type = new Array();  //Pointers to arrays of GMarkers by type (for show/hide)
    var enabled_types = new Array(); //Array of marker types currently enabled
    var queueInfoWindow;
    var results = new Array();
    var restrict_to_center = false;
    var centerLat1 = 0;
    var centerLat2 = 0;
    var centerLng1 = 0;
    var centerLng2 = 0;

    // Creates a marker whose info window displays the caption
    function createMarker(map, latitude, longitude, html_caption, icon, id, marker_type, name) {
      type_enabled = 0;
      for (i=0; i < enabled_types.length; i++) {
        if (enabled_types[i] == marker_type) type_enabled = 1;
      }
      
      if (type_enabled) {
        inArray = 0;
        if (!markers_by_type[marker_type]) markers_by_type[marker_type] = new Array();
        if (id > 0 || id != '') {
          for (i=0; i < markers_by_type[marker_type].length; i++) {
             if (markers_by_type[marker_type][i]['id'] == id) inArray = 1;
          }
        }

        if (inArray == 0) {
          var point = new GPoint(longitude, latitude);
          var marker = new GMarker(point, icon);
          GEvent.addListener(marker, "click", markers[id] = function() {
            marker.openInfoWindowHtml(html_caption);
          });
          //GEvent.addListener(marker, "mouseover", markers[id]);
          map.addOverlay(marker);

          //Add the marker object to the array of arrays organized by type to allow show/hide functionality using checkboxes
          m = markers_by_type[marker_type][markers_by_type[marker_type].length] = new Array();
          m['marker'] = marker;
          m['id'] = id;
          m['name'] = name;
          m['info'] = markers[id];
          m['iconfile'] = icon.image;

          found = 0;
          for (i=0; i < results.length; i++) {
            if (results[i]['id'] == id) found = 1;
          }
          if (!found) results[results.length] = m;
        }
      }
    }

   function sortByName(a, b) {
     var x = a['name'].toLowerCase();
     var y = b['name'].toLowerCase();

     return ((x < y) ? -1 : ((x > y) ? 1 : 0));
   }

   function update_results() {
     iframe = document.getElementById('results');
     if (iframe) {
       results.sort(sortByName);

       str = '<p align="center"><b>Search Results</b></p>';
       for (i=0; i < results.length; i++) {
         str = str + '<div onmouseover="this.style.cursor=\'pointer\'; this.style.backgroundColor=\'#999999\';" onmouseout="this.style.backgroundColor=\'#eeeeee\'" onclick="parent.results['+i+'][\'info\']();"><img src="'+results[i]['iconfile']+'"> '+results[i]['name']+'</div>';
       }
       str = str + '</body></html>';
     
       iframe.contentWindow.document.body.innerHTML = str; 
     }
   }

   function enable_type(marker_type) {
     enabled_types[enabled_types.length] = marker_type;
     map_update();
   }

   function enable_types(marker_types) {
       for(enableTypesIndex=0; enableTypesIndex < marker_types.length; enableTypesIndex++) {
       	try {
           enable_type(marker_types[enableTypesIndex]);
	} catch (err) {alert(err);}
       }
   }

   function disable_type(marker_type) {
     newList = new Array();
     for (i=0; i < enabled_types.length; i++) {
       if (enabled_types[i] != marker_type) {
         newList[newList.length] = enabled_types[i];
       }
     }
     enabled_types = newList;

     if (markers_by_type[marker_type]) {
       for (i=0; i < markers_by_type[marker_type].length; i++) {
         map.removeOverlay(markers_by_type[marker_type][i]['marker']);
         tmp = results;
         results = new Array();
         for (j=0; j < tmp.length; j++) {
           if (tmp[j]['id'] != markers_by_type[marker_type][i]['id']) {
             results[results.length] = tmp[j];
           }             
         }
       }
     }

     markers_by_type[marker_type] = new Array();
     update_results();
   }

   function disable_types(marker_types) {
       for(disableTypesCounter=0; disableTypesCounter < marker_types.length; disableTypesCounter++) {
       	 try {
       	  disable_type(marker_types[disableTypesCounter]);
	 } catch(err) {alert(err);}
       }
   }

   function map_update() {
      bounds = map.getBounds();
      sw = bounds.getSouthWest();
      ne = bounds.getNorthEast();
      if (restrict_to_center) {
        if (centerLat1 == 0) {
          centerLat1 = sw.lat();
          centerLat2 = ne.lat();
          centerLng1 = sw.lng();
          centerLng2 = ne.lng();
        }
        lat1 = centerLat1;
        lat2 = centerLat2;
        lng1 = centerLng1;
        lng2 = centerLng2;
      } else {
        lat1 = sw.lat();
        lat2 = ne.lat();
        lng1 = sw.lng();
        lng2 = ne.lng();
      }
     
      new Ajax.Updater('ajaxdiv', '/txorails/public/misc/map_ajax?type=&lat1='+lat1+'&lat2='+lat2+'&lng1='+lng1+'&lng2='+lng2+'&maptype=city_lake', {asynchronous:true, evalScripts:true});
    }

    function map_zoomin(overlay, point) {
      if (map.getZoom() < 12 && overlay) {
        map.setZoom(12);
      }
    }

    function map_init(latitude, longitude, zoom, restrict) {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map"));
        GEvent.addListener(map, "moveend", map_update);
          
        map.addControl(new GLargeMapControl());
        map.addControl(new GMapTypeControl());
        map.setCenter(new GLatLng(latitude, longitude), zoom);
        restrict_to_center = restrict;

 

        baseIcon = new GIcon();
   
        baseIcon.iconSize = new GSize(20, 20);
        baseIcon.iconAnchor = new GPoint(10, 10); 
        baseIcon.infoWindowAnchor = new GPoint(10, 3);
   

   
        //enabled_types[enabled_types.length] = 'G1';
        icon_golf_1 = new GIcon(baseIcon);
     
        icon_golf_1.image = "/images/icons/golfCourse_blu.png";
     

        icon_golf_rated_1 = new GIcon(baseIcon);
        
        icon_golf_rated_1.image = "/images/icons/golfCourse_red.png";
     
        //enabled_types[enabled_types.length] = 'G2';
        icon_golf_2 = new GIcon(baseIcon);
     
        icon_golf_2.image = "/images/icons/golfCourse_yel.png";
     

        icon_golf_rated_2 = new GIcon(baseIcon);
        
        icon_golf_rated_2.image = "/images/icons/golfCourse_red.png";
     
        //enabled_types[enabled_types.length] = 'G3';
        icon_golf_3 = new GIcon(baseIcon);
     
        icon_golf_3.image = "/images/icons/golfCourse_bwn.png";
     

        icon_golf_rated_3 = new GIcon(baseIcon);
        
        icon_golf_rated_3.image = "/images/icons/golfCourse_red.png";
     
        //enabled_types[enabled_types.length] = 'G4';
        icon_golf_4 = new GIcon(baseIcon);
     
        icon_golf_4.image = "/images/icons/golfCourse_grn.png";
     

        icon_golf_rated_4 = new GIcon(baseIcon);
        
        icon_golf_rated_4.image = "/images/icons/golfCourse_red.png";
     
        //enabled_types[enabled_types.length] = 'C1';
        icon_campground_1 = new GIcon();
        icon_campground_1.iconSize = new GSize(20, 20);
        icon_campground_1.iconAnchor = new GPoint(10, 10);
        icon_campground_1.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_1.image = "/images/icons/camping_bwn.png";
     

     
        icon_campground_rated_1 = new GIcon();
        icon_campground_rated_1.iconSize = new GSize(20, 20);
        icon_campground_rated_1.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_1.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_1.image = "/images/icons/camping_red.png";
     
        //enabled_types[enabled_types.length] = 'C2';
        icon_campground_2 = new GIcon();
        icon_campground_2.iconSize = new GSize(20, 20);
        icon_campground_2.iconAnchor = new GPoint(10, 10);
        icon_campground_2.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_2.image = "/images/icons/camping_bwn.png";
     

     
        icon_campground_rated_2 = new GIcon();
        icon_campground_rated_2.iconSize = new GSize(20, 20);
        icon_campground_rated_2.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_2.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_2.image = "/images/icons/camping_red.png";
     
        //enabled_types[enabled_types.length] = 'C3';
        icon_campground_3 = new GIcon();
        icon_campground_3.iconSize = new GSize(20, 20);
        icon_campground_3.iconAnchor = new GPoint(10, 10);
        icon_campground_3.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_3.image = "/images/icons/statePark_bwn.png";
     

     
        icon_campground_rated_3 = new GIcon();
        icon_campground_rated_3.iconSize = new GSize(20, 20);
        icon_campground_rated_3.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_3.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_3.image = "/images/icons/statePark_red.png";
     
        //enabled_types[enabled_types.length] = 'C4';
        icon_campground_4 = new GIcon();
        icon_campground_4.iconSize = new GSize(20, 20);
        icon_campground_4.iconAnchor = new GPoint(10, 10);
        icon_campground_4.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_4.image = "/images/icons/rvPark_bwn.png";
     

     
        icon_campground_rated_4 = new GIcon();
        icon_campground_rated_4.iconSize = new GSize(20, 20);
        icon_campground_rated_4.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_4.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_4.image = "/images/icons/rvPark_red.png";
     
        //enabled_types[enabled_types.length] = 'C5';
        icon_campground_5 = new GIcon();
        icon_campground_5.iconSize = new GSize(20, 20);
        icon_campground_5.iconAnchor = new GPoint(10, 10);
        icon_campground_5.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_5.image = "/images/icons/statePark_bwn.png";
     

     
        icon_campground_rated_5 = new GIcon();
        icon_campground_rated_5.iconSize = new GSize(20, 20);
        icon_campground_rated_5.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_5.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_5.image = "/images/icons/statePark_red.png";
     
        //enabled_types[enabled_types.length] = 'C7';
        icon_campground_7 = new GIcon();
        icon_campground_7.iconSize = new GSize(20, 20);
        icon_campground_7.iconAnchor = new GPoint(10, 10);
        icon_campground_7.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_7.image = "/images/icons/dayPark_bwn.png";
     

     
        icon_campground_rated_7 = new GIcon();
        icon_campground_rated_7.iconSize = new GSize(20, 20);
        icon_campground_rated_7.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_7.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_7.image = "/images/icons/dayPark_bwn.png";
     
        //enabled_types[enabled_types.length] = 'C8';
        icon_campground_8 = new GIcon();
        icon_campground_8.iconSize = new GSize(20, 20);
        icon_campground_8.iconAnchor = new GPoint(10, 10);
        icon_campground_8.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_8.image = "/images/icons/statePark_bwn.png";
     

     
        icon_campground_rated_8 = new GIcon();
        icon_campground_rated_8.iconSize = new GSize(20, 20);
        icon_campground_rated_8.iconAnchor = new GPoint(10, 10);
        icon_campground_rated_8.infoWindowAnchor = new GPoint(10, 3);
     
        icon_campground_rated_8.image = "/images/icons/statePark_red.png";
     
        //enabled_types[enabled_types.length] = 'M1';
        icon_misc_1 = new GIcon();
        icon_misc_1.iconSize = new GSize(20, 20);
        icon_misc_1.iconAnchor = new GPoint(10, 10);
        icon_misc_1.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_1.image = "/images/icons/marina_bwn.png";
     

     
        icon_misc_rated_1 = new GIcon();
        icon_misc_rated_1.iconSize = new GSize(20, 20);
        icon_misc_rated_1.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_1.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_1.image = "/images/icons/marina_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M2';
        icon_misc_2 = new GIcon();
        icon_misc_2.iconSize = new GSize(20, 20);
        icon_misc_2.iconAnchor = new GPoint(10, 10);
        icon_misc_2.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_2.image = "/images/icons/boatRental_bwn.png";
     

     
        icon_misc_rated_2 = new GIcon();
        icon_misc_rated_2.iconSize = new GSize(20, 20);
        icon_misc_rated_2.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_2.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_2.image = "/images/icons/boatRental_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M4';
        icon_misc_4 = new GIcon();
        icon_misc_4.iconSize = new GSize(20, 20);
        icon_misc_4.iconAnchor = new GPoint(10, 10);
        icon_misc_4.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_4.image = "/images/icons/dining_bwn.png";
     

     
        icon_misc_rated_4 = new GIcon();
        icon_misc_rated_4.iconSize = new GSize(20, 20);
        icon_misc_rated_4.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_4.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_4.image = "/images/icons/dining_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M6';
        icon_misc_6 = new GIcon();
        icon_misc_6.iconSize = new GSize(20, 20);
        icon_misc_6.iconAnchor = new GPoint(10, 10);
        icon_misc_6.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_6.image = "/images/icons/hiking_bwn.png";
     

     
        icon_misc_rated_6 = new GIcon();
        icon_misc_rated_6.iconSize = new GSize(20, 20);
        icon_misc_rated_6.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_6.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_6.image = "/images/icons/hiking_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M7';
        icon_misc_7 = new GIcon();
        icon_misc_7.iconSize = new GSize(20, 20);
        icon_misc_7.iconAnchor = new GPoint(10, 10);
        icon_misc_7.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_7.image = "/images/icons/hikeBikeTr_bwn.png";
     

     
        icon_misc_rated_7 = new GIcon();
        icon_misc_rated_7.iconSize = new GSize(20, 20);
        icon_misc_rated_7.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_7.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_7.image = "/images/icons/hikeBikeTr_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M15';
        icon_misc_15 = new GIcon();
        icon_misc_15.iconSize = new GSize(20, 20);
        icon_misc_15.iconAnchor = new GPoint(10, 10);
        icon_misc_15.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_15.image = "/images/icons/lakeRental_bwn.png";
     

     
        icon_misc_rated_15 = new GIcon();
        icon_misc_rated_15.iconSize = new GSize(20, 20);
        icon_misc_rated_15.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_15.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_15.image = "/images/icons/lakeRental_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M17';
        icon_misc_17 = new GIcon();
        icon_misc_17.iconSize = new GSize(20, 20);
        icon_misc_17.iconAnchor = new GPoint(10, 10);
        icon_misc_17.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_17.image = "/images/icons/nightlife_bwn.png";
     

     
        icon_misc_rated_17 = new GIcon();
        icon_misc_rated_17.iconSize = new GSize(20, 20);
        icon_misc_rated_17.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_17.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_17.image = "/images/icons/nightlife_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M18';
        icon_misc_18 = new GIcon();
        icon_misc_18.iconSize = new GSize(20, 20);
        icon_misc_18.iconAnchor = new GPoint(10, 10);
        icon_misc_18.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_18.image = "/images/icons/attractions_bwn.png";
     

     
        icon_misc_rated_18 = new GIcon();
        icon_misc_rated_18.iconSize = new GSize(20, 20);
        icon_misc_rated_18.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_18.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_18.image = "/images/icons/attractions_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M19';
        icon_misc_19 = new GIcon();
        icon_misc_19.iconSize = new GSize(20, 20);
        icon_misc_19.iconAnchor = new GPoint(10, 10);
        icon_misc_19.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_19.image = "/images/icons/boatRamp_bwn.png";
     

     
        icon_misc_rated_19 = new GIcon();
        icon_misc_rated_19.iconSize = new GSize(20, 20);
        icon_misc_rated_19.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_19.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_19.image = "/images/icons/boatRamp_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M20';
        icon_misc_20 = new GIcon();
        icon_misc_20.iconSize = new GSize(20, 20);
        icon_misc_20.iconAnchor = new GPoint(10, 10);
        icon_misc_20.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_20.image = "/images/icons/fishCabin_bwn.png";
     

     
        icon_misc_rated_20 = new GIcon();
        icon_misc_rated_20.iconSize = new GSize(20, 20);
        icon_misc_rated_20.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_20.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_20.image = "/images/icons/fishCabin_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M21';
        icon_misc_21 = new GIcon();
        icon_misc_21.iconSize = new GSize(20, 20);
        icon_misc_21.iconAnchor = new GPoint(10, 10);
        icon_misc_21.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_21.image = "/images/icons/lodging_bwn.png";
     

     
        icon_misc_rated_21 = new GIcon();
        icon_misc_rated_21.iconSize = new GSize(20, 20);
        icon_misc_rated_21.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_21.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_21.image = "/images/icons/lodging_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M22';
        icon_misc_22 = new GIcon();
        icon_misc_22.iconSize = new GSize(20, 20);
        icon_misc_22.iconAnchor = new GPoint(10, 10);
        icon_misc_22.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_22.image = "/images/icons/mountainBike_bwn.png";
     

     
        icon_misc_rated_22 = new GIcon();
        icon_misc_rated_22.iconSize = new GSize(20, 20);
        icon_misc_rated_22.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_22.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_22.image = "/images/icons/mountainBike_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M23';
        icon_misc_23 = new GIcon();
        icon_misc_23.iconSize = new GSize(20, 20);
        icon_misc_23.iconAnchor = new GPoint(10, 10);
        icon_misc_23.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_23.image = "/images/icons/partyCove_bwn.png";
     

     
        icon_misc_rated_23 = new GIcon();
        icon_misc_rated_23.iconSize = new GSize(20, 20);
        icon_misc_rated_23.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_23.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_23.image = "/images/icons/partyCove_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M24';
        icon_misc_24 = new GIcon();
        icon_misc_24.iconSize = new GSize(20, 20);
        icon_misc_24.iconAnchor = new GPoint(10, 10);
        icon_misc_24.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_24.image = "/images/icons/resort_bwn.png";
     

     
        icon_misc_rated_24 = new GIcon();
        icon_misc_rated_24.iconSize = new GSize(20, 20);
        icon_misc_rated_24.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_24.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_24.image = "/images/icons/resort_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M25';
        icon_misc_25 = new GIcon();
        icon_misc_25.iconSize = new GSize(20, 20);
        icon_misc_25.iconAnchor = new GPoint(10, 10);
        icon_misc_25.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_25.image = "/images/icons/staynplay_bwn.png";
     

     
        icon_misc_rated_25 = new GIcon();
        icon_misc_rated_25.iconSize = new GSize(20, 20);
        icon_misc_rated_25.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_25.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_25.image = "/images/icons/staynplay_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M27';
        icon_misc_27 = new GIcon();
        icon_misc_27.iconSize = new GSize(20, 20);
        icon_misc_27.iconAnchor = new GPoint(10, 10);
        icon_misc_27.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_27.image = "/images/icons/resort_bwn.png";
     

     
        icon_misc_rated_27 = new GIcon();
        icon_misc_rated_27.iconSize = new GSize(20, 20);
        icon_misc_rated_27.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_27.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_27.image = "/images/icons/resort_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M29';
        icon_misc_29 = new GIcon();
        icon_misc_29.iconSize = new GSize(20, 20);
        icon_misc_29.iconAnchor = new GPoint(10, 10);
        icon_misc_29.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_29.image = "/images/icons/blue.png";
     

     
        icon_misc_rated_29 = new GIcon();
        icon_misc_rated_29.iconSize = new GSize(20, 20);
        icon_misc_rated_29.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_29.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_29.image = "/images/icons/blue.png";
     

   
        //enabled_types[enabled_types.length] = 'M30';
        icon_misc_30 = new GIcon();
        icon_misc_30.iconSize = new GSize(20, 20);
        icon_misc_30.iconAnchor = new GPoint(10, 10);
        icon_misc_30.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_30.image = "/images/icons/golfCommunity_bwn.png";
     

     
        icon_misc_rated_30 = new GIcon();
        icon_misc_rated_30.iconSize = new GSize(20, 20);
        icon_misc_rated_30.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_30.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_30.image = "/images/icons/golfCommunity_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M31';
        icon_misc_31 = new GIcon();
        icon_misc_31.iconSize = new GSize(20, 20);
        icon_misc_31.iconAnchor = new GPoint(10, 10);
        icon_misc_31.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_31.image = "/images/icons/txoFavs_bwn.png";
     

     
        icon_misc_rated_31 = new GIcon();
        icon_misc_rated_31.iconSize = new GSize(20, 20);
        icon_misc_rated_31.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_31.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_31.image = "/images/icons/txoFavs_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M32';
        icon_misc_32 = new GIcon();
        icon_misc_32.iconSize = new GSize(20, 20);
        icon_misc_32.iconAnchor = new GPoint(10, 10);
        icon_misc_32.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_32.image = "/images/icons/fishing_bwn.png";
     

     
        icon_misc_rated_32 = new GIcon();
        icon_misc_rated_32.iconSize = new GSize(20, 20);
        icon_misc_rated_32.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_32.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_32.image = "/images/icons/fishing_red.png";
     

   
        //enabled_types[enabled_types.length] = 'M33';
        icon_misc_33 = new GIcon();
        icon_misc_33.iconSize = new GSize(20, 20);
        icon_misc_33.iconAnchor = new GPoint(10, 10);
        icon_misc_33.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_33.image = "/images/icons/canoeing_bwn.png";
     

     
        icon_misc_rated_33 = new GIcon();
        icon_misc_rated_33.iconSize = new GSize(20, 20);
        icon_misc_rated_33.iconAnchor = new GPoint(10, 10);
        icon_misc_rated_33.infoWindowAnchor = new GPoint(10, 3);
     
        icon_misc_rated_33.image = "/images/icons/canoeing_red.png";
     

   
      }
    }

