    //<![CDATA[    function load() {      if (GBrowserIsCompatible()) {        var map = new GMap2(document.getElementById("map"));                map.addControl(new GSmallMapControl());		map.addControl(new GMapTypeControl());		map.addControl(new GOverviewMapControl());        map.setCenter(new GLatLng(47.649808, -122.357317), 14);                // Our info window contentvar infoTabs = [  new GInfoWindowTab("Our location", "Hilltop Children's Center<br />4 W. Nickerson St., Suite 101<br />Seattle, WA 98109"),  new GInfoWindowTab("Directions", "<div align='left' class='smalltext'><br />&nbsp;<br />Go to Google Maps &amp;<br />get directions to Hilltop Children's Center<br />&nbsp;<br /></div><form action='http://maps.google.com/maps' method='get'><label for='mapsUsSaddr'><div align='left'>Type your street address followed by zip code:<br /></div></label><input type='text' class='text' name='saddr' id='mapsUsSaddr' value='' size='30' /><input type='submit' class='submit' value='Go' /><input type='hidden' name='daddr' value='4 W. Nickerson St., Seattle, WA 98109' /><input type='hidden' name='hl' value='en' /></form>"),  new GInfoWindowTab("Contact Info", "Phone: (206) 283-3100<br />E-mail: <a href='http://www.hilltopcc.com/contact-form/'>Send us e-mail</a>")];// 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);      }    }    //]]>window.onload=load;	window.onunload=GUnload;