function initialize1() {
      if (GBrowserIsCompatible())
      {
        var strDivs=document.getElementById("hddDivs");
        
        if(strDivs!="null")
        {
            if((strDivs.value!="1") & (strDivs.value!=""))
            {
                var divArray = strDivs.value.split(",");
                for(var i=0;i<divArray.length;i++)
                {
                    var strTemp=new GMap2(document.getElementById(divArray[i]));
                    //strTemp.setCenter(new GLatLng(37.4419, -122.1419), 13);
                    geocoder = new GClientGeocoder();
                    var strName=divArray[i]+"txt"+(i+1);
                    var strAddress=document.getElementById(strName);
                    strAddress=strAddress.value;
                    showAddress1(strAddress,strTemp);
                }
            }
        }
        
       

      }
    }
    
    
    function showAddress1(address, map1) {
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
                              
                map1.innerHTML="";
              //alert(address + " not found");
            } else {
              map1.setCenter(point, 15);
              var marker = new GMarker(point);
              map1.addOverlay(marker);
              //map1.addControl(new GSmallMapControl());
              map1.addControl(new GLargeMapControl());
              //marker.openInfoWindowHtml(address);
            }
          }
        );
      }
    }