var map;
var directionsPanel;
var directions;

function initialize() {
  if (GBrowserIsCompatible()) {
	map = new GMap2(document.getElementById("map_canvas"));
	map.setMapType(G_PHYSICAL_MAP);
	map.disableDragging();
	directionsPanel = document.getElementById("my_textual_div");
	map.setCenter(new GLatLng(locLatitude,locLongitude), 9);
	
	//directions = new GDirections(map, directionsPanel);
	//directions.load("New York, NY to Chicago, IL");
  }
}
