function wagt_map_1() {
  if(GBrowserIsCompatible()) {
    if(!document.getElementById('wagt_map_1')) return false;
    var map = new GMap2(document.getElementById('wagt_map_1'));
    map.enableContinuousZoom();
    map.enableDoubleClickZoom();
    map.addControl(new GSmallZoomControl());
    map.addControl(new GMapTypeControl());
    
	


var iconPH = new GIcon();
    iconPH.image = 'http://www.holiday-trevone.co.uk/images/900x400/googlemap-icon.png';
    iconPH.iconSize = new GSize(54,56);
    iconPH.shadowSize = new GSize(40,41);
    iconPH.iconAnchor = new GPoint(25,56);
    iconPH.infoWindowAnchor = new GPoint(26,4);
    iconPH.printImage = 'http://www.holiday-trevone.co.uk/images/900x400/googlemap-icon.gif';
    iconPH.mozPrintImage = 'http://google.webassist.com/google/markers/pushpin/cabosunset_mozprint.png';
    iconPH.printShadow = 'http://google.webassist.com/google/markers/pushpin/shadow.gif';
    iconPH.transparent = 'http://google.webassist.com/google/markers/pushpin/cabosunset_transparent.png';
	
	markerOptions = { icon:iconPH };
	var mlatlng = new GLatLng(50.54475,-4.97799);
	var platlng = new GLatLng(50.54540,-4.9782);
	map.addOverlay(new GMarker(mlatlng, markerOptions));
    map.setCenter(platlng, 17);
	map.setMapType(G_HYBRID_MAP); // G_SATELLITE_MAP
  }
}