var map = null;
var geocoder = null;

function initialize() {
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById("map_canvas"));
    geocoder = new GClientGeocoder();
    showAddress('4405 Cox Rd, Glen Allen, VA 23060');
    return false;
  }
};

function showAddress(address) {
  if (geocoder) {
    geocoder.getLatLng(
      address,
      function(point) {
        if (!point) {
          alert(address + " not found");
        } else {
          var marker = new GMarker(point);
          map.clearOverlays();
          map.addOverlay(marker);
          marker.openInfoWindowHtml("<table><tr><td><a target='_blank' href='http://www.dataconcepts-inc.com/'>Data Concepts</a></td></tr><tr><td><img src='http://www.dataconcepts-inc.com/Images/office.jpg' border='0' /></td></tr><tr><td>4405 Cox Rd, Suite 140<br />Glen Allen, VA 23060<br />804-968-4700</td></tr></table><br /><a target='_blank' href='http://maps.google.com/maps?q=4405%20Cox%20Rd%20Glen%20Allen,%20VA'>Directions</a>");
          map.setCenter(point, 13);
        }
      }
    );
  }
}