    var map;
    var geocoder;
    var address = "11353 REED HARTMAN HWY, CINCINNATI, OH 45241";
    function initialize() {
      map = new GMap2(document.getElementById("myMap"));
      map.addControl(new GSmallMapControl());
      geocoder = new GClientGeocoder();
      if (geocoder) {
	geocoder.getLatLng(
		address,
		function(point) {						
		map.setCenter(point, 13);
		var marker = new GMarker(point);
		map.addOverlay(marker);
		marker.openInfoWindowHtml("Various Views Research");
		}
	);
      }
    }

    // addAddressToMap() is called when the geocoder returns an
    // answer.  It adds a marker to the map with an open info window
    // showing the nicely formatted version of the address and the country code.
    function addAddressToMap(response) {
      map.clearOverlays();
      if (!response || response.Status.code != 200) {
        alert("Sorry, we were unable to geocode that address");
      } else {
        place = response.Placemark[0];
        point = new GLatLng(place.Point.coordinates[1],
                            place.Point.coordinates[0]);
        marker = new GMarker(point);
        map.addOverlay(marker);
        marker.openInfoWindowHtml(place.address);
	markerb = new GMarker(new GLatLng(39.275098, -84.375487));
	map.addOverlay(markerb);
      }
    }

    // showLocation() is called when you click on the Search button
    // in the form.  It geocodes the address entered into the form
    // and adds a marker to the map at that location.
    function showLocation() {
      var address = document.forms[0].q.value;
      geocoder.getLocations(address, addAddressToMap);
    }

   // findLocation() is used to enter the sample addresses into the form.
    function findLocation(address) {
      document.forms[0].q.value = address;
      showLocation();
    }

