function ConfirmOrder() {
	var objForm = document.directory_form;
	
	var intPrimaryQuantity = objForm.primary_quantity.value;

	var strWarning = "ORDER CONFIRMATION\n\nBy submitting this form, you are placing an order for " + intPrimaryQuantity + " directorie(s).\n\n";
	strWarning += "These 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);
}
