var map;
var directionsPanel;
var directions;

function cload(course,dlat,dlong,address) {
	map = new GMap2(document.getElementById("googlemap"));
	directionsPanel = document.getElementById("directions");
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(dlat,dlong), 13);
	directions = new GDirections(map, directionsPanel);
	directions.load("Las Vegas Strip to "+address);
}
