
function loadDir()
{
	var xform  = document.getElementById("getDir");
	var rootURL = "http://maps.yahoo.com/dd?addr=";
	var newURL  = "";
	var fromAdd = "";
	var toAdd   = "&taddr=4321+virginia beach+blvd&tcsz=virginia beach+va+23452&tcountry=us";
	var street  = "";
	var stnum   = "";
	var stlbl   = "";
	var city    = "";
	var state   = "";
	var zip     = "";

// http://maps.yahoo.com/dd?addr=1416+shelborne+ct&csz=virginia beach+va+23452&country=us&taddr=4321+virginia beach+blvd&tcsz=virginia beach+va+23452&tcountry=us">Click for directions

	street = xform.street.value;
	city   = xform.city.value;
	state  = xform.state.value;
	zip    = xform.zipcode.value;

	newURL = rootURL + street + "&csz=" + city + "+" + state + "+" + zip + "&country=us" + toAdd;

  	window.location = newURL

}

