// JavaScript Document

    //<![CDATA[

  function load() {
      if (GBrowserIsCompatible()) {
		  
        var map = new GMap2(document.getElementById("map"));
		/*map.setCenter(new GLatLng(33.78736, -117.89872), 17);*/
		map.setCenter(new GLatLng(33.7866, -117.89897), 17);
		map.setMapType(G_HYBRID_MAP);
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());

			
			var baseIcon = new GIcon();
				baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
				baseIcon.iconSize = new GSize(20, 34);
				baseIcon.shadowSize = new GSize(37, 34);
				baseIcon.iconAnchor = new GPoint(9, 34);
				baseIcon.infoWindowAnchor = new GPoint(9, 2);
				baseIcon.infoShadowAnchor = new GPoint(18, 25);

		
      }
 
    }







    //]]>
	
/* IMPORTANT - YOU MUST DO THE FOLLOWING FOR THE MAP TO DISPLAY - CA

1. insert the following in the header of the page that will display the map:
			<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAhI-1N9bSzyKdJpEFUgq9uhQkES0D5mwabNbriwxqE8OoXvraGhQwRiWhHhNPuaI18YyW5u5vdsxpYw" type="text/javascript"></script>
<script type="text/javascript" src="<?=URLBASE?>includes/google_map.js"></script>

2. insert the follwing into the body tag of the same page:
			onload="load()" onunload="GUnload()"
			
3. add the following to the part of the body where you want the map to show up:
			<div id="map" style="width: 565px; height: 350px"></div>

*/