var map; function initialize() { if (!document.getElementById('map-canvas')) return; var myLatLng=new google.maps.LatLng(, ); var mapOptions = { zoom: 11, center: myLatLng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions); var image = 'http://www.ashdod-home.co.il/webimages/ashdod_waze_icon.png'; var markers=new Array(); myLatLng=new google.maps.LatLng(, ); markers[23]= new google.maps.Marker({ position: myLatLng, map: map, icon: image, title:"סוויטות רימון" }); markers[23].infowindow =new google.maps.InfoWindow({ content: "

סוויטות רימון

עזריקם

", maxWidth: 400, }); google.maps.event.addListener(markers[23], 'click', function() { markers[23].infowindow.open(map,markers[23]); }); window.setTimeout(function(){markers[23].infowindow.open(map,markers[23]);},1000); } google.maps.event.addDomListener(window, 'load', initialize);