	    var themap = new GMap2(document.getElementById("map"));
	    themap.addControl(new GSmallMapControl());
	    themap.addControl(new GMapTypeControl());
        var here = new GLatLng( 55.952049,-3.188001, false);
    	themap.setCenter(here,13);

	    var icon_red = new GIcon();
	    icon_red.image = "http://www.greatbase.co.uk/img/red-dot.png";
		icon_red.iconSize = new GSize(32, 32);
		icon_red.iconAnchor = new GPoint(16,32);
		icon_red.infoWindowAnchor = new GPoint(16, 32);

	    var icon_blue = new GIcon();
	    icon_blue.image = "http://www.greatbase.co.uk/img/blue-dot.png";
		icon_blue.iconSize = new GSize(32, 32);
		icon_blue.iconAnchor = new GPoint(16,32);
		icon_blue.infoWindowAnchor = new GPoint(16, 32);

		GEvent.addListener(themap,"load",function(){alert("!");});
	    function goHere(x,y,hill_name,hill_height,grid_ref, theicon)
	    {
		    themap.panTo(new GLatLng(x,y));
		    theSize = new GSize(0,0);
		    themap.openInfoWindowHtml(new GLatLng(x,y),unescape(hill_name).replace(/\+/g," "));
	    }
