function openMapQuest ()
{
bldg = document.getElementById("bldgnumber").value;
address = document.getElementById("addressLine1").value;
city = document.getElementById("City1").value;
state = document.getElementById("State1").value;
zip = document.getElementById("ZipCode1").value;

locationString = "www.mapquest.com/maps/"+bldg+"+"+address+"+"+city+"+"+state+"+"+zip+"/"+"428+Maple+Avenue+Vienna+VA+22180/";

alert ("Hi");
window.location="http://"+locationString;

}
