function load(current_location) {
  if (GBrowserIsCompatible()) {
		// create the map
		var map = new GMap(document.getElementById("map"));

		// create a new Gpoint of the office LONG/LAT coords
		var sunChevy = new GPoint(-75.869233,43.042830);
		var sunAuto = new GPoint(-76.12083,43.15997);
		var sunNew = new GPoint(-76.209517,42.538342);

		// add the Controls
		map.addControl(new GLargeMapControl());

		// plot the location
		map.centerAndZoom(new GPoint(-76.12083,43.15997), 9);

		// create a marker for the location
		var sunChevyMarker = new GMarker(sunChevy);
		var sunChevyContent = "<div style='width: 300px; text-align: left; font: normal 11px verdana;'><strong>Sun&nbsp;Chevrolet\</strong><br>104 West Genesee Street &middot; Route 5<br>Chittenango, New York 13037-1531\<br><br><strong>Directions to Our Office\</strong><br><em><font size='1'>enter your address\</font>\</em><br><form action='http://maps.google.com/maps' method='get' style='margin:0px'><input type='text' name='saddr' id='saddr' size='30' style='font: normal 10px verdana' value='' /><input type='hidden' name='daddr' value='104 West Genesee Street, Chittenango, NY 13037' /><input type='hidden' name='hl' value='en' /><input type='submit' value='get directions' style='font: normal 10px verdana;'><font style='color: #999; font-size: 9px;'>example: 104 West Genesee Street, Chittenango, NY\</font>\</form>\</div>";
		var sunAutoMarker = new GMarker(sunAuto);
		var sunAutoContent = "<div style='width: 300px; text-align: left; font: normal 11px verdana;'><strong>Sun&nbsp;Auto&nbsp;Warehouse\</strong><br>8010 Brewerton Road<br>Cicero, New York 13039\<br><br><strong>Directions to Our Office\</strong><br><em><font size='1'>enter your address\</font>\</em><br><form action='http://maps.google.com/maps' method='get' style='margin:0px'><input type='text' name='saddr' id='saddr' size='30' style='font: normal 10px verdana' value='' /><input type='hidden' name='daddr' value='8010 Brewerton Road, Cicero, NY 13039' /><input type='hidden' name='hl' value='en' /><input type='submit' value='get directions' style='font: normal 10px verdana;'><font style='color: #999; font-size: 9px;'>example: 8010 Brewerton Road, Cicero, NY\</font>\</form>\</div>";
		var sunNewMarker = new GMarker(sunNew);
		var sunNewContent = "<div style='width: 300px; text-align: left; font: normal 11px verdana;'><strong>Sun&nbsp;Cortland\</strong><br>3870 West Road<br>Cortland, New York 13045\<br><br><strong>Directions to Our Office\</strong><br><em><font size='1'>enter your address\</font>\</em><br><form action='http://maps.google.com/maps' method='get' style='margin:0px'><input type='text' name='saddr' id='saddr' size='30' style='font: normal 10px verdana' value='' /><input type='hidden' name='daddr' value='3870 West Road, Cortland, NY 13045' /><input type='hidden' name='hl' value='en' /><input type='submit' value='get directions' style='font: normal 10px verdana;'><font style='color: #999; font-size: 9px;'>example: 3870 West Road, Cortland, NY\</font>\</form>\</div>";

		GEvent.addListener(sunChevyMarker, 'click', function() {
			sunChevyMarker.openInfoWindowHtml(sunChevyContent);
		});
		
		GEvent.addListener(sunAutoMarker, 'click', function() {
			sunAutoMarker.openInfoWindowHtml(sunAutoContent);
		});
		
		GEvent.addListener(sunNewMarker, 'click', function() {
			sunNewMarker.openInfoWindowHtml(sunNewContent);
		});
		
		// display the markers
		map.addOverlay(sunChevyMarker);
		map.addOverlay(sunAutoMarker);
		map.addOverlay(sunNewMarker);
		if (current_location == "sunchevrolet") {
			sunChevyMarker.openInfoWindowHtml(sunChevyContent);
		}
		else if (current_location == "suncicero") {
			sunAutoMarker.openInfoWindowHtml(sunAutoContent);
		}
		else {
			sunNewMarker.openInfoWindowHtml(sunNewContent);
		}
	}
}


if(document.getElementById && document.createTextNode) {
	window.onload=function() {
		createMap();
		}
	}

