function ConfirmOrder() {
	var objForm = document.directory_form;
	var strPrimaryLocation = objForm.primary_location.options[objForm.primary_location.selectedIndex].value.replace("_", " ");
	var intPrimaryQuantity = objForm.primary_quantity.value;
	var strSecondLocation = objForm.secondary_location.options[objForm.secondary_location.selectedIndex].value.replace("_", " ");
	var intSecondQuantity = objForm.secondary_quantity.value;
	var strThirdLocation = objForm.third_location.options[objForm.third_location.selectedIndex].value.replace("_", " ");
	var intThirdQuantity = objForm.third_quantity.value;
	var strWarning = "ORDER CONFIRMATION\n\nBy submitting this form, you are placing an order for the following directories:\n\n";
	if (strPrimaryLocation != "") {
		strWarning += strPrimaryLocation + " (Quantity - " + intPrimaryQuantity + ")\n";
	}
	if (strSecondLocation != "") {
		strWarning += strSecondLocation + " (Quantity - " + intSecondQuantity + ")\n";
	}
	if (strThirdLocation != "") {
		strWarning += strThirdLocation + " (Quantity - " + intThirdQuantity + ")\n";
	}
	strWarning += "\n\nThese directories will be mailed to you, free of charge, at the following address:\n\n";
	
	strWarning += objForm.address.value + "\n";
	if (objForm.department_address2.value != "") strWarning += objForm.department_address2.value + "\n";
	strWarning += objForm.city.value + ", " + objForm.state.value + " " +objForm.zip.value + "\n";

	return confirm(strWarning);

}