	var map;
    var geocoder;
    function initialize() {
		if(document.getElementById("googleMap")){
			map = new GMap2(document.getElementById("googleMap"));
		 // map.setCenter(new GLatLng(34, 0), 14);
			var mapCoords =new GLatLng(51.21008, -0.58491); //Map Long and Lat for Office
			map.setCenter(mapCoords, 12);
			//geocoder = new GClientGeocoder();
			var mapControl = new GMapTypeControl();
			map.addControl(mapControl);
			map.addControl(new GLargeMapControl());
			// map.setCenter(mapCoords, 15);
					  var marker = new GMarker(mapCoords);
					  map.addOverlay(marker);
					  marker.openInfoWindowHtml('Timson House, Unit 4,<br />Quadrum Park,<br />Old Portsmouth Road,<br />Guildford,<br />GU3 1LU,<br />Tel: 01483 207 520,<br />Fax: 01483 566 699');

			
		}
    }

  