var geocoder = null;
var map = null;

/**/
function GoogleMapLoad(type)
    {
    if (GBrowserIsCompatible())
        {
        if (type == 1) {
            var geoXml = new GGeoXml("http://smart.tychy.pl/plugins/googlemap_nieruchomosci/nieruchomosci_niezabudowane_pl.kml");
        }
        else if (type == 2) {
            var geoXml = new GGeoXml("http://smart.tychy.pl/plugins/googlemap_nieruchomosci/nieruchomosci_zabudowane_pl.kml");
        }
        else if (type == 4) {
            var geoXml = new GGeoXml("http://smart.tychy.pl/plugins/googlemap_nieruchomosci/nieruchomosci_niezabudowane_en.kml");
        }
        else if (type == 5) {
            var geoXml = new GGeoXml("http://smart.tychy.pl/plugins/googlemap_nieruchomosci/nieruchomosci_zabudowane_en.kml");
        }
        else if (type == "all_pl"){
            var geoXml = new GGeoXml("http://smart.tychy.pl/plugins/googlemap_nieruchomosci/nieruchomosci_pl.kml");
        }
        else if (type == "all_en"){
            var geoXml = new GGeoXml("http://smart.tychy.pl/plugins/googlemap_nieruchomosci/nieruchomosci_en.kml");
        }

        map = new GMap2(document.getElementById("map"));
        geocoder = new GClientGeocoder();
        map.addControl(new GLargeMapControl());
	map.setCenter(new GLatLng(52.025459,19.204102), 6);
        map.addOverlay(geoXml);
        }
    }
