function load() { if (GBrowserIsCompatible()) { var map = new GMap2(document.getElementById("map")); map.setCenter(new GLatLng(37.4419, -122.1419), 13); } } function GmapAddressShow(mapaddress, mapcaption){ if (GBrowserIsCompatible()) { geocoder = new GClientGeocoder(); if (geocoder) { geocoder.getLatLng( mapaddress, function(point) { if (!point) { document.getElementById("bxgmap").innerText="\n"+mapaddress + " address not found!"; } else { map = new GMap2(document.getElementById("bxgmap")); map.setCenter(point, 16); var marker = new GMarker(point); map.addOverlay(marker); marker.openInfoWindowHtml(mapcaption); map.addControl(new GSmallMapControl()); } } ); } // if (geocoder) } // if (GBrowserIsCompatible()) } document.write('
'); GmapAddressShow(', ירושלים ישראל', ' אחראי/ת תוכן שיווקי - ירושלים

לא צויין

'); window.onunload = GUnload;