﻿
 
    function load() {
	if (GBrowserIsCompatible()) 
	{
        if (document.getElementById("map"))
        {
          if (GBrowserIsCompatible()) {
	    var neothinkAddress = "4950 East 345th Street, Willoughby, OH, 44094";
            
            var html = '<b>Enter Your Starting Address</b><br>(street address, zip) '  +
               '<form action="http://maps.google.com/maps" method="get" target="_blank">' +
               '<input type="text" MAXLENGTH=40 style="width:175px;font-size:11px;" name="saddr" id="saddr" value="" />' +
               '&nbsp;<INPUT value="Get Directions" TYPE="SUBMIT" style="width:90px;font-size:11px;">' +
               '<input type="hidden" name="daddr" value="' + neothinkAddress + '"/>';
            var map = new GMap2(document.getElementById("map"));
            map.addControl(new GSmallMapControl());
            
           map.setCenter(new GLatLng(41.62552,-81.442021), 13);
      
            var infoTabs = [
              new GInfoWindowTab("Address", "Neothink LLC<br>4950 East 345th Street<br>Willoughby, OH  44094<br><br>440-944-THINK<br>(440-944-8446)<br><a href='mailto:info@neothink.net'>info@neothink.net</a>"),
              new GInfoWindowTab("Directions", html)
            ];
            var marker = new GMarker(map.getCenter());
            GEvent.addListener(marker, "click", function() {
              marker.openInfoWindowTabsHtml(infoTabs);
            });
            map.addOverlay(marker);
            marker.openInfoWindowTabsHtml(infoTabs);
          }
        }
	}
    }
    
    
 

