function loadGoogleMap() {
      
if (GBrowserIsCompatible()) {
		document.getElementById("map").style.width="420px";
		document.getElementById("map").style.height="340px";
        var map = new GMap2(document.getElementById("map"));
		
		var Place = new GMarker(new GLatLng(51.517600, -3.550800));
		
 		map.setCenter(new GLatLng(51.518800, -3.550800), 16);
		map.addControl(new GMapTypeControl());
		map.addControl(new GLargeMapControl());
		//map.setMapType(G_HYBRID_TYPE);
		
		map.addOverlay(Place);
		
		Place.openInfoWindowHtml("<b>Inscapes</b><br/>Wyndham Close, Brackla Industrial Estate,<br/>Bridgend, CF31 2AN<br/>Tel: 01656 65046");
		GEvent.addListener(Place, "click", function() {Place.openInfoWindowHtml("<b>Inscapes</b><br/>Wyndham Close, Brackla Industrial Estate,<br/>Bridgend, CF31 2AN<br/>Tel: 01656 65046")});
		document.getElementById("directions").innerHTML="<form action='http://maps.google.co.uk/maps' method='get'>Get directions from: <input type='text' name='saddr' id='saddr' value='' /><input type='submit' value='Go' /><input type='hidden' name='daddr' value='CF31 2AN' /><input type='hidden' name='hl' value='en' /></form>";
      }
    }

window.onload = function() {
loadGoogleMap();
};

