    // map.js
    //<![CDATA[
    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
	// get ready to disable this line
	// before set center
	map.addControl(new GSmallMapControl());
	map.addControl(new GMapTypeControl());

	// Geocoding
	geocoder = new GClientGeocoder();
	if (geocoder) {
		geocoder.getLatLng(
		  // adjust address to suit
		  '6565 Pearl Rd., Parma Heights, OH 44130',
	          function(point) {
		    if (!point) {
	              alert(address + " not found");
		    } else {
	          map.setCenter(point, 14);
			 map.panDirection(0,1);
			 //map.panBy(10);
		      var marker = new GMarker(point);
	              map.addOverlay(marker);
		      // adjust html to suit, being careful to escape single quotes.

					  marker.openInfoWindowHtml('<table><tr><td><div align=left style="font-family:arial,sans-serif;font-size:13px;"><span style="font-size:16px;font-weight:bold;"><a target=_new href=http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=6565+Pearl+Rd+Parma+Heights+OH+44130&sll=37.0625,-95.677068&sspn=33.02306,56.601563&ie=UTF8&ll=41.467798,-81.920028&spn=0.007621,0.013819&z=16&iwloc=addr>Rad Air</a></span> <span style="font-size:7px"><br><br></span>6565 Pearl Rd.<br>Parma Heights, OH 44130<br>(440) 842-5152<br><a target=_new href=http://www.radair.com/>radair.com</a><br><a href="http://www.acdelco.com">acdelco.com</a><br><br><a target=_new href=http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=6565+Pearl+Rd+Parma+Heights+OH+44130&sll=37.0625,-95.677068&sspn=33.02306,56.601563&ie=UTF8&ll=41.467798,-81.920028&spn=0.007621,0.013819&z=16&iwloc=addr><b>Directions</b></a></div></td></tr></table>' );
		    }
		}
		);
	}
      }
    }

