// JavaScript Document



<!--  initialize Google Maps functions -->



    function initialize() {

      if (GBrowserIsCompatible()) {

        var map = new GMap2(document.getElementById("google-map"));

        map.setCenter(new GLatLng(52.91816018635317, -8.565436005592346), 9);

        map.setUIToDefault();

      



	  	var point = new GLatLng(52.91816018635317, -8.565436005592346);

		var marker = new GMarker(point);

  

		

		GEvent.addListener(marker, "click", function() { 

    			marker.openInfoWindowHtml("<div style=\" margin:0px; padding:0px; font:arial; width:160px; font-size:12px;\"><span style=\" font-weight:bold;\">Irish Seed Savers Association</span>,<br/>Capparoe,<br/>Scarriff,<br/>Co.Clare<br/><br/>Tel: +353 (0)61 921 866</span>");

  		});

		

		map.addOverlay(marker);

	  }



}



<!-- End initialize Google Maps function -->



initialize();