//<![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.43, -6.437945365905762), 11);



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


 

// set up the first marker
   var point1 = new GLatLng(54.37555829481324, -6.437945365905762);
   var html_text1 = '<div style="width:220px; height:90px;" class="bubble"><b>Ballylisk Car Sales</b><br>133 Portadown Road<br>Tandragee<br>County Armagh<br>Northern Ireland<br>BT62 2JX<br>[Use map controls to zoom in or 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");
    }

       //]]>