function initialize1()
{
      //alert("Test");
      if (GBrowserIsCompatible())
      {
        var strTemp=new GMap2(document.getElementById("map"));
        strTemp.setMapType(G_DEFAULT_MAP_TYPES)
        //strTemp.enableScrollWheelZoom() ;
        geocoder = new GClientGeocoder();
        var strAddress=document.getElementById("txtAddressTemp");
        strAddress=strAddress.value;
        showAddress1(strAddress,strTemp);
//        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, 13);
              //map1.setMapType(G_SATELLITE_MAP)
              //map1.getCenterAsync(function(center) {
              //map1.openInfoWindowHtml(center, "Hello World");
              
              var marker = new GMarker(point);
              map1.addOverlay(marker);
              //map1.openInfoWindowHtml(address);
            }
          }
        );
      }
    }
    
    