 //<![CDATA[

    // Check to see if this browser can run the Google API
    if (GBrowserIsCompatible()) {
    
    
          // Display the map, with some controls and set the initial location 


      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl3D());
      var mapControl = new GMapTypeControl();
      map.addControl(mapControl);

      map.setCenter(new GLatLng(55.075,-6.5178751945495605), 14);



     // ==================================================
      // Set up markers



// set up the first marker
   var point1 = new GLatLng(55.07118991698346,-6.517821550369263);
   var html_text1 = '<div style="width:220px; height:90px;" class="bubble"><b>James McMullan & Son</b><br>22 High Street<br>Ballymoney<br>County Antrim<br>Northern Ireland<br>BT53 6AQ<br>[Use map controls to zoom in or out]</div>';
   var marker1 = new GMarker(point1, G_DEFAULT_ICON);
   GEvent.addListener(marker1, 'click', function() {
      marker1.openInfoWindowHtml(html_text1);
   });

   map.addOverlay(marker1);


   }

    
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }

       //]]>
