
	
    // Creates a marker whose info window displays the given number
    function createMarker(point, number) 
	{
        var marker = new GMarker(point);
        // Show this marker's index in the info window when it is clicked
        var html = number ;
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
      return marker;
    }

var map;
var point;
var marker;
  function load()
	{
		//<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?daddr=57+Fore+Bondgate,+Bishop+Auckland,+Durham,+UK&amp;geocode=&amp;dirflg=&amp;saddr=&amp;f=d&amp;sll=54.660131,-1.630096&amp;sspn=0.153904,0.308647&amp;ie=UTF8&amp;ll=54.665391,-1.675427&amp;spn=0.006295,0.010885&amp;iwloc=ddw1&amp;output=embed&amp;s=AARTsJq-YH-MiNbth1gyZCxVvpGWaE8eaQ"></iframe><br /><small><a href="http://maps.google.com/maps?daddr=57+Fore+Bondgate,+Bishop+Auckland,+Durham,+UK&amp;geocode=&amp;dirflg=&amp;saddr=&amp;f=d&amp;sll=
		//54.660131,-1.630096&amp;sspn=0.153904,0.308647&amp;ie=UTF8&amp;ll=
		//54.665391,-1.675427&amp;spn=0.006295,0.010885&amp;iwloc=ddw1&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>
		//http://maps.google.com/maps?daddr=57+Fore+Bondgate,+Bishop+Auckland,+Durham,+UK&geocode=&dirflg=&saddr=&f=d&sll=
		//54.660131,-1.630096&sspn=0.153904,0.308647&ie=UTF8&z=16
    map = new GMap(document.getElementById("map"));
    map.addControl(new GSmallMapControl());
   // Spennymoor
   // map.centerAndZoom(new GPoint(-1.613316535949707, 54.9777860730714), 2);
    map.centerAndZoom(new GPoint(-1.488488,54.716596), 7);
     point = new GPoint(-1.620288,54.686596);
   marker = createMarker(point, "<p style=\"width:230px; font-size:80%\"><img src=\"http://www.ukwatercolours.com/includes/scripts/phpthumb/phpThumb.php?src=/images/paintings/High_Row_1960.jpg&h=90&w=90&zc=1\" style=\"float:right; border:1px solid black;\"><strong><a href=\"/contact\">Eric Thompson</a></strong><br/>7 High Croft<br/>Middlestone Moor<br/>Spennymoor<br/>County Durham<br/>DL16 7AL</p>");
   map.addOverlay(marker);
     point2 = new GPoint(-1.675427,54.665391);
   marker2 = createMarker(point2, "<p style=\"width:230px; font-size:80%\"><img src=\"http://www.ukwatercolours.com/includes/scripts/phpthumb/phpThumb.php?src=/images/paintings/newgate_street.jpg&h=90&w=90&zc=1\" style=\"float:right; border:1px solid black;\"><strong><a href=\"/contact\">Bondgate Gallery</a></strong><br/>57 Fore Bondgate<br/>Bishop Auckland<br/>Co Durham<br/>DL14 7EP</p>");
   map.addOverlay(marker2);
	}
	

	

