    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	map.addControl(new GSmallMapControl());
        map.setCenter(new GLatLng(52.49616,-1.757812), 6);

        var point = new GLatLng(53.4310,-2.5312);
        var marker = new GMarker(point);
	var infoTabs = [
  	new GInfoWindowTab("Address", "<b>Claremont Group Interiors</b><br>The Breeze<br>Kelvin Close<br>Birchwood<br>Warrington<br>WA3 7PB"),
  	new GInfoWindowTab("Directions", "Enter your postcode to get directions<br><form name=\"directions\" target=\"_blank\" method=\"GET\" action=\"http://maps.google.co.uk/maps\" onsubmit=\"document.getElementById('q').value=document.getElementById('q').value+' to WA3 7PB'\"><input type=\"text\" name=\"q\" id=\"q\"><input type=\"hidden\" name=\"f\" value=\"q\"><input type=\"hidden\" name=\"hl\" value=\"en\"><input type=\"hidden\" name=\"om\" value=\"1\"><br><input type=\"submit\" value=\"get directions\"></form>")
	];


	GEvent.addListener(marker, "click", 
		function() {
			marker.openInfoWindowTabsHtml(infoTabs);
			map.setCenter(point, 13);
  		});
	map.addOverlay(marker); 

        var point = new GLatLng(51.4696,-2.6591);
	var marker1 = new GMarker(point);
	var infoTabs1 = [
  	new GInfoWindowTab("Address", "<b>Claremont Group Interiors</b><br>Leigh Court<br>Abbots Leigh<br>Bristol<br>BS8 3RA"),
  	new GInfoWindowTab("Directions", "Enter your postcode to get directions<br><form name=\"directions\" target=\"_blank\" method=\"GET\" action=\"http://maps.google.co.uk/maps\" onsubmit=\"document.getElementById('q').value=document.getElementById('q').value+' to BS8 3RA'\"><input type=\"text\" name=\"q\" id=\"q\"><input type=\"hidden\" name=\"f\" value=\"q\"><input type=\"hidden\" name=\"hl\" value=\"en\"><input type=\"hidden\" name=\"om\" value=\"1\"><br><input type=\"submit\" value=\"get directions\"></form>")
	];


	GEvent.addListener(marker1, "click", 
		function() {
			marker1.openInfoWindowTabsHtml(infoTabs1);
			map.setCenter(point, 13);
  		});
	map.addOverlay(marker1); 

        var point = new GLatLng(50.8481,-1.1796);
	var marker2 = new GMarker(point);
		var infoTabs2 = [
  	new GInfoWindowTab("Address", "<b>Claremont Group Interiors</b><br>Lower Quay<br>Fareham<br>Hampshire<br>PO16 0XR "),
  	new GInfoWindowTab("Directions", "Enter your postcode to get directions<br><form name=\"directions\" target=\"_blank\" method=\"GET\" action=\"http://maps.google.co.uk/maps\" onsubmit=\"document.getElementById('q').value=document.getElementById('q').value+' to PO16 0XR'\"><input type=\"text\" name=\"q\" id=\"q\"><input type=\"hidden\" name=\"f\" value=\"q\"><input type=\"hidden\" name=\"hl\" value=\"en\"><input type=\"hidden\" name=\"om\" value=\"1\"><br><input type=\"submit\" value=\"get directions\"></form>")
	];


	GEvent.addListener(marker2, "click", 
		function() {
			marker2.openInfoWindowTabsHtml(infoTabs2);
			map.setCenter(point, 14);
  		});
	map.addOverlay(marker2); 
		}

    }