
	    function GLoad(lat,long,markerHTML)
	    {
	      if (GBrowserIsCompatible())
	      {
	        var map = new GMap2(document.getElementById("gmap"));
	        //var point = new GLatLng(51.471994,-2.614893);
	        var mapControl = new GMapTypeControl(); 
		map.addControl(mapControl); 
	        var point = new GLatLng(lat,long);
	        var marker = new GMarker(point);
	        map.setCenter(point, 13);
	        map.enableDoubleClickZoom(true);
	        map.addControl(new GLargeMapControl());
	        map.setZoom(13);
	        GEvent.addListener(marker, "click", function()
	        	{ marker.openInfoWindowHtml(markerHTML);
	        	});
	       
           	map.addOverlay(marker);
             marker.openInfoWindowHtml(markerHTML);
	      }
	    }
	    
	    function ClearDivs()
	    {
	    document.getElementById("henchicken").style.display='none';
	    document.getElementById("redgrave").style.display='none';
	    document.getElementById("blakehay").style.display='none';
	   }
	    

// for GLoad location grab the ll value from the im / email link
	function load_henchicken()
	    {
	     	GLoad(51.44051338474315, -2.6097893714904785,"<strong>Hen & Chicken</strong><br/>210 North Street,<br/>Southville<br />Bristol BS3 1JF");
	     	ClearDivs();
	     	document.getElementById("henchicken").style.display='block';
	    }

	function load_tobaccofactory()
	    {

	     	GLoad(51.44235911715651, -2.6134800910949707,"<strong>Tobacco Factory</strong><br/>Raleigh Road<br/>Southville<br />Bristol BS3 1TF");
	     	ClearDivs();
	     	document.getElementById("henchicken").style.display='block';
	    }

        function load_redgrave()
	    {

	     	GLoad(51.460177, -2.622866,"<strong>Redgrave Theatre</strong><br />Percival Road<br />Clifton<br/>Bristol BS8 3LE");
	     	ClearDivs();
	     	document.getElementById("redgrave").style.display='block';
	    }
	    
	function load_blakehay()
	    {
	     	GLoad(51.35095, -2.980161,"<strong>Blakehay Theatre</strong><br/>20 Wadham Street,<br />Weston-super-Mare<br />BS23 1JZ");
	     	ClearDivs();
	     	document.getElementById("blakehay").style.display='block';
	    }	    

	
	    
	    




