if (GBrowserIsCompatible()) { 

  // A function to create the marker and set up the event window
  // Dont try to unroll this function. It has to be here for the function closure
  // Each instance of the function preserves the contends of a different instance
  // of the "marker" and "html" variables which will be needed later when the event triggers.    
  function createMarker(point) {
	var marker = new GMarker(point);
	return marker;
  }

  // Display the map, with some controls and set the initial location 
  var map = new GMap2(document.getElementById("map"));
  map.addControl(new GSmallMapControl());
  map.setCenter(new GLatLng(40.17517470378243, -75.04479605941772),13);
	  

  // Set up three markers with info windows 

  
//  var point = new GLatLng(40.17577470378243, -75.04449605941772);
//  var marker = createMarker(point,'<strong>Sattler Family &amp; Cosmetic Dentistry</strong><br />635 Street Road<br />Southampton, PA 18966')
//  map.addOverlay(marker);
  
  var point = new GLatLng(40.17517470378243, -75.04479605941772);
  var marker = createMarker(point)
  map.addOverlay(marker);

}

// display a warning if the browser was not compatible
else {
  alert("Sorry, the Google Maps API is not compatible with this browser");
}

// This Javascript is based on code provided by the
// Blackpool Community Church Javascript Team
// http://www.commchurch.freeserve.co.uk/   
// http://econym.googlepages.com/index.htm