//Google Maps
var trclaw = "367 West Memorial Drive, Dallas GA 30132";

var map;
var gdir;
var geocoder = null;
var addressMarker;

function initialize() {
  if (GBrowserIsCompatible()) {
    map = new GMap2(document.getElementById("map"));
    gdir = new GDirections(map, document.getElementById("directions"));
	
    map.addControl(new GSmallZoomControl());
	
    GEvent.addListener(gdir, "load", onGDirectionsLoad);
    GEvent.addListener(gdir, "error", handleErrors);
    setDirections("Marietta GA", trclaw);
  }
}
function setDirections(fromAddress, toAddress) {
  gdir.load("from: " + fromAddress + " to: " + toAddress);
}
function handleErrors() {
  var status = document.getElementById("status");
  if (gdir.getStatus().code == G_GEO_UNKNOWN_ADDRESS) {
    status.innerHTML = "<p>We couldn't locate the address you provided. Please enter street, city and your state and try again.</p>";
  }
  else if (mapsearch.from.value == "")  {
    status.innerHTML = "<p>Please enter your address.</p>";
  }
  else {
    status.innerHTML = "<p>An unknown error occurred.</p>";
  }
}
function onGDirectionsLoad() {
  document.getElementById("status").innerHTML = " ";
}
