 //<![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(54.13, -5.96), 11);



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

// set up the first marker
   var point1 = new GLatLng(54.10782326663329, -5.898327827453613);
   var html_text1 = '<div style="width:250px; height:85px;" class="bubble"><b>A. Robinson & Son</b><br>14 Main Street, Annalong, <br>County Down, BT34 4TR.<br>[Use map controls to zoom in and out] </div>';
   var marker1 = new GMarker(point1, G_DEFAULT_ICON);
   GEvent.addListener(marker1, 'mouseover', 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");
    }

       //]]>
