function initialize(addresslist,Bname,phone) {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(43.670461, -79.377459), 10);
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());

        // Create a base icon for all of our markers that specifies the
        // shadow, icon dimensions, etc.
        var baseIcon = new GIcon();
        baseIcon.shadow = "MapIcon/shadow50.png";
        baseIcon.iconSize = new GSize(20, 34);
        baseIcon.shadowSize = new GSize(37, 34);
        baseIcon.iconAnchor = new GPoint(9, 34);
        baseIcon.infoWindowAnchor = new GPoint(9, 2);
        baseIcon.infoShadowAnchor = new GPoint(18, 25);

        // Creates a marker whose info window displays the letter corresponding
        // to the given index.
        function createMarker(point, index) {
          // Create a lettered icon for this point using our icon class
          //var letter = String.fromCharCode("A".charCodeAt(0) + index);
          var letteredIcon = new GIcon(baseIcon);
		  var n= index
          //letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + ".png";
			letteredIcon.image = "MapIcon/iconb" + n + ".png";
          // Set up our GMarkerOptions object
          markerOptions = { icon:letteredIcon };
          var marker = new GMarker(point, markerOptions);
		var bn=Bname[index].replace(/ /g, "-")
          GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("<b>" + Bname[index] + "</b></br>" + phone[index] + "</br><a href='Canada-Toronto-411-information/free-411.asp?c=" + bn + "'>More</a>");
          });
          return marker;
        }

        
        for (var i=1;i<addresslist.length;i++) {
          var latlng = new GLatLng(addresslist[i].split(",")[1],addresslist[i].split(",")[0]);
          map.addOverlay(createMarker(latlng, i));
        }
      }
    }
    