
var map_0, geoXml=null;

latlng="47.478783,19.253572";
if (GBrowserIsCompatible()) {
	map_0 = new GMap2(document.getElementById("Googlemap_0"));
	map_0.clearOverlays();
	map_0.enableDoubleClickZoom();
	map_0.enableContinuousZoom();
	map_0.setMapType(G_HYBRID_MAP);

	if(latlng!="") {
		var coord=new GLatLng(47.478783,19.253572);
		map_0.setCenter(coord, 17);
	}

	geoXml = new GGeoXml("http://www.google.com/maps/ms?output=nl&hl=hu&ie=UTF8&msa=0&msid=105945582181532835276.000473645b69e732431c2&ll=47.478783,19.253572&spn=0.004133,0.009602&t=h&z=17");
	map_0.addOverlay(geoXml);
	map_0.setUIToDefault();
	
	PosLib = document.getElementById("Lib_0");
	TagSmall=document.createElement("small")
	Lien = document.createElement('a');
	Lien.setAttribute('href',"http://maps.google.hu/maps/ms?hl=hu&ie=UTF8&msa=0&msid=105945582181532835276.000473645b69e732431c2&ll=47.478783,19.253572&spn=0.004133,0.009602&t=h&z=17");
	Lien.appendChild(document.createTextNode("Zoom in"));
	TagSmall.appendChild(Lien);
	PosLib.appendChild(TagSmall);
}
else {
	document.getElementById("Googlemap_0").innerHTML="Sorry, your browser can't display Google Maps...";
}
