function load() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(42.046679,-87.677679), 14);
		map.addControl(new GSmallMapControl());

		var point = new GLatLng(42.046679,-87.677679);
		map.addOverlay(new GMarker(point));

		map.openInfoWindowHtml(map.getCenter(),
			"<b>George Salon</b><br/>808 Davis Street<br/>Evanston, IL, 60201");
	}
}

function chartDirections( address ){

	if (GBrowserIsCompatible()) {

		map = new GMap2(document.getElementById("map"));
		map.addControl(new GSmallMapControl());
		directionsPanel = document.getElementById("route");
		directions = new GDirections(map, directionsPanel);
		directions.load(address + ' to 808 Davis Street, Evanston, IL, 60201');

	}

}
