﻿function Process_Quote_Form_Real(what){

	box = what.BoxType;
	var BoxType = box.options[box.selectedIndex].value;

	box = what.DeliveryType;
	var DeliveryType = box.options[box.selectedIndex].value;
	
	box = what.PostalType;
	var PostalType = box.options[box.selectedIndex].value;	
	
	var IncludeDiscount = true;
	
	calc_quote(BoxType,DeliveryType,PostalType,IncludeDiscount)

}

/* EOF */
