var stdOptions = "resizable=no,directories=no,left=10,top=10,toolbar=no";

function openCopyright() {
 var url = "http://www.mapquest.com/about/copyright.adp?display=popup";
 var options = stdOptions + ",width=580,height=650,scrollbars=yes";
 window.open(url,"Copyright",options);
}

function openAbbrev() {
 var url = "http://www.mapquest.com/maps/abbrev.adp";
 var options = stdOptions + ",width=250,height=650,scrollbars=yes";
 window.open(url,"abbrevs",options);
}

function getDirectionsFromMap() {
 var strLocOrigin = document.ddFromMap.location[document.ddFromMap.location.selectedIndex].value;
 var strLocDest = document.ddFromMap.location[document.ddFromMap.location.selectedIndex].value;
 var strUrl = "http://www.mapquest.com/directions/main.adp?go=1&";
 strUrl = strUrl + "1a=" + document.ddFromMap.address.value + "&1c=";
 strUrl = strUrl + document.ddFromMap.city.value + "&1s=";
 strUrl = strUrl + document.ddFromMap.state.value + "&1z=&1y=US&";
 strUrl = strUrl + strLocDest;
 window.location = strUrl;
 return false;
}