function global_map() {
	  
  var center = new GLatLng(54.999999, -2.5);
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById('map'));
    map.setCenter(center, 7);
    map.addControl(new GSmallMapControl());		
    var marker_0 = new GMarker(new GLatLng(54.8857, -2.93097));
    GEvent.addListener(marker_0, 'click',
                  function() {
                  marker_0.openInfoWindowHtml('<p class=\"popup-branch-name\">Carlisle (Horticulture)</p><p class=\"popup-branch-address\">Currock Road, Carlisle, Cumbria, , CA2 4AU</p>');
                  }
         );
   map.addOverlay(marker_0);
          var marker_1 = new GMarker(new GLatLng(54.9755, -2.09758));
    GEvent.addListener(marker_1, 'click',
                  function() {
                  marker_1.openInfoWindowHtml('<p class=\"popup-branch-name\">Hexham (Horticulture)</p><p class=\"popup-branch-address\">Tyne Green, Hexham, Northumberland, , NE46 3SG</p>');
                  }
         );
   map.addOverlay(marker_1);
          var marker_2 = new GMarker(new GLatLng(55.404, -1.69108));
    GEvent.addListener(marker_2, 'click',
                  function() {
                  marker_2.openInfoWindowHtml('<p class=\"popup-branch-name\">Alnwick (Horticulture)</p><p class=\"popup-branch-address\">Willowburn Trading Estate, Alnwick, Northumberland, , NE66 2PF</p>');
                  }
         );
   map.addOverlay(marker_2);
          var marker_3 = new GMarker(new GLatLng(54.9442, -3.91691));
    GEvent.addListener(marker_3, 'click',
                  function() {
                  marker_3.openInfoWindowHtml('<p class=\"popup-branch-name\">Castle Douglas</p><p class=\"popup-branch-address\">c/o James Gordon Ltd, Dalbeattie Rd, Castle Douglas, DG7 1HZ</p>');
                  }
         );
   map.addOverlay(marker_3);
        }
}
