E//<![CDATA[
		   
	function createMarker(point,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        return marker;
      }
	  
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(41.688380, -93.782380), 14);					//These numbers are copied out of google maps page link, the last number is the zoom
		
		map.addControl(new GSmallMapControl());									//This is a smaller zoon and panning function
		map.addControl(new GMapTypeControl());									//This allows the user to switch between Map, Hybrid, and Satelite views

		var point = new GLatLng(41.688380, -93.782380);							//The numbers are copied out of the google maps page link
		var marker = createMarker(point,'<b>Grimes Tire and Auto Center, Inc.</b><BR>1100 1st St.<BR>P.O. Box 740<BR>Grimes, IA 50111<BR>(515) 986-2221<BR><a href="http://maps.google.com/maps?f=d&hl=en&geocode=&saddr=&daddr=41.688321,-93.782376&mrcr=0&mrsp=1&sz=17&mra=dme&sll=41.687712,-93.782419&sspn=0.005048,0.009999&ie=UTF8&t=h&z=17&om=1" target="_blank">Get Directions</a>')
		map.addOverlay(marker);
				marker.openInfoWindowHtml('<b>Grimes Tire and Auto Center, Inc.</b><BR>1100 1st St.<BR>P.O. Box 740<BR>Grimes, IA 50111<BR>(515) 986-2221<BR><a href="http://maps.google.com/maps?f=d&hl=en&geocode=&saddr=&daddr=41.688321,-93.782376&mrcr=0&mrsp=1&sz=17&mra=dme&sll=41.687712,-93.782419&sspn=0.005048,0.009999&ie=UTF8&t=h&z=17&om=1" target="_blank">Get Directions</a>')
      }
    }

//]]>