		function load() {
		     if (GBrowserIsCompatible()) {
		       var map = new GMap2(document.getElementById("map3"));
		   	   map.addControl(new GLargeMapControl());
		
		       map.addControl(new GMapTypeControl());
		       map.setCenter(new GLatLng(30.217344839937656, -81.37177348136902), 12);
		
		        // Our info window content
			   var text="<div style='background-color:#FFFFFF'><b>Cabana Club</b></div><div style='font-size:11px;background-color:#FFFFFF'>619 Ponte Vedra Blvd, </div><div style='font-size:11px;background-color:#FFFFFF'>Ponte Vedra Beach, FL 32082</div></form>";
			   var text1="<div style='margin-top:3px; font-size:11px;'>Enter Starting Address:</div><form target='_blank' method='get' action='http://maps.google.com/maps'><div><input type='hidden' name='daddr' value='619 Ponte Vedra Blvd, Ponte Vedra Beach, FL 32082' /><div><input id='saddr' type='text' size='35' name='saddr' /></div><div><input type='submit' name='btnG' value='Get Directions' /></div>";
				 
			       // Our info window content
			   var text2="<div><b>Cabana Club</b></div><div style='font-size:11px;'>619 Ponte Vedra Blvd, </div><div style='font-size:11px;background-color:#FFFFFF'>Ponte Vedra Beach, FL 32082</div></form>";
			   var text3="<div style='margin-top:3px; font-size:11px;'>Enter Starting Address:</div><form target='_blank' method='get' action='http://maps.google.com/maps'><div><input type='hidden' name='daddr' value='619 Ponte Vedra Blvd, Ponte Vedra Beach, FL 32082' /><div><input id='saddr' type='text' size='35' name='saddr' /></div><div><input type='submit' name='btnG' value='Get Directions' /></div>";
		
		       var infoTabs = [
		       new GInfoWindowTab("Address", text),
		       new GInfoWindowTab("Directions", text1)
		       ];
		       var infoTabs1 = [
		       new GInfoWindowTab("Address", text2),
		       new GInfoWindowTab("Directions", text3)
		       ];		
			
		       // Place a marker in the center of the map and open the info window
		       // automatically
		       var marker = new GMarker(map.getCenter());
		       GEvent.addListener(marker, "click", function() {
		       marker.openInfoWindowTabsHtml(infoTabs);
		       });
		       map.addOverlay(marker);
		       marker.openInfoWindowTabsHtml(infoTabs);
		
		      // Creates a marker at the given point with the given number label
		       function createMarker(point, number) {
		         var marker = new GMarker(point);
		         GEvent.addListener(marker, "click", function() {
		         marker.openInfoWindowTabsHtml(infoTabs1);
		         });
		         return marker;
		       } 
		     }
		   }