﻿// JScript File
    
function loadMap() {
        if (document.getElementById("map") != null) {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(53.3599, -2.8227), 15);
        point = new GLatLng(53.3599, -2.8227);
        marker = new GMarker(point);
        map.addOverlay(marker);
        marker.openInfoWindowHtml('Focus Gymnastics, Halewood Leisure Centre');
      }
      }
    }