function setupMap() {
  if (GBrowserIsCompatible()) {
    var map = new GMap2(document.getElementById("map"));
    map.addControl(new GLargeMapControl());
    map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng(53.58851, -2.66767), 15);

    map.enableScrollWheelZoom();
    map.enableDoubleClickZoom();

    var icon = new GIcon();
    icon.image = "http://labs.google.com/ridefinder/images/mm_20_red.png";
    icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
    icon.iconSize = new GSize(12, 20);
    icon.shadowSize = new GSize(22, 20);
    icon.iconAnchor = new GPoint(6, 20);
    icon.infoWindowAnchor = new GPoint(5, 1);

    var bounds = map.getBounds();
    var southWest = bounds.getSouthWest();
    var northEast = bounds.getNorthEast();
    var lngSpan = northEast.lng() - southWest.lng();
    var latSpan = northEast.lat() - southWest.lat();

    var point = new GLatLng(southWest.lat() + (latSpan/2), southWest.lng() + (lngSpan/2));

    map.addOverlay(new GMarker(point, icon));

    var mminf = document.createElement('p');
    var strng = document.createElement('strong');
    strng.appendChild(document.createTextNode("Motormotion Self Drive."));
    mminf.appendChild(strng);
    mminf.appendChild(document.createElement('br'));
    mminf.appendChild(document.createTextNode("82a Preston Road,"));
    mminf.appendChild(document.createElement('br'));
    mminf.appendChild(document.createTextNode("Standish,"));
    mminf.appendChild(document.createElement('br'));
    mminf.appendChild(document.createTextNode("Wigan."));
    mminf.appendChild(document.createElement('br'));
    mminf.appendChild(document.createTextNode("WN6 0HS."));

    map.openInfoWindow(map.getCenter(), mminf);
  }
}