<!--
    function applyst() {
		load();
		if( window.XTRonload ) { window.XTRonload(); }
		}
	function savest() {
		GUnload();
		if( window.XTRonunload ) { window.XTRonunload(); }
		}

	//load handling adapted from
	//http://www.brothercake.com/site/resources/scripts/onload/
	if( window.addEventListener ) {
			window.addEventListener( 'load', applyst, false );
			window.addEventListener( 'unload', savest, false );
		} else if( document.addEventListener ) {
			document.addEventListener('load' , applyst, false );
			document.addEventListener( 'unload', savest, false );
		} else if( window.attachEvent ) {
			window.attachEvent( 'onload', applyst );
			window.attachEvent( 'onunload', savest );
		} else {
			if( window.onload ) { window.XTRonload = window.onload; }
			if( window.onunload ) { window.XTRonunload = window.onunload; }
		window.onload = applyst;
		window.onunload = savest;
	}

    // Google maps script <![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
	  // A function to create the marker and set up the event window   
      function createMarker(point,html) {
         var marker = new GMarker(point);
		 //It's the "click", function etc. bit below that makes the 'popup' open
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
        
		var map = new GMap2(document.getElementById("map"));
//Set up map controls
		map.setCenter(new GLatLng(53.179472,-2.925153), 13);
		//latitude & longitude of map center. 13 here is the 'scale' of the map larger numbers increase scale. add ,G_SATELLITE_MAP or ,G_HYBRID_MAP for the alternative map types after the scale.
		map.addControl(new GSmallMapControl());
		//Map controler type, this is a small one, GLargeMapControl() for the usual sise one
		//adds the small 'area' map in the corner
		map.addControl(new GMapTypeControl());
		//Adds the map type buttons


// Set up markers with info windows can be any number of these
		var point = new GLatLng(53.179472,-2.925153);
      	var marker = createMarker(point,'<p>1st 4 Print</p>')
      	map.addOverlay(marker);
      }
    }
		
    //]]>
		
		
