function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById('map'));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
var point = new GLatLng(51.8574371337891, -2.2532320022583);
map.setCenter(point, 13 );
// Create a marker
var marker = new GMarker(point);
// add a listenter so we show the window when the marker is clicked
GEvent.addListener(marker, 'click', function() { map.openInfoWindowHtml(point, 'Cineworld Gloucester
The Peel Centre, St Ann\'s Way
Bristol Road
Gloucester
GL1 5SF');});
map.addOverlay(marker);
// open the window initially
map.openInfoWindowHtml(point, 'Cineworld Gloucester
The Peel Centre, St Ann\'s Way
Bristol Road
Gloucester
GL1 5SF');
}
}