﻿function Process_Quote_Form_Real(what){

	box = what.PrintType;
	var PrintType = 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;

	box = what.CardType;
	var CardType = box.options[box.selectedIndex].value;
	
	box = what.Laminated;
	var Laminated = box.options[box.selectedIndex].value;
	
	var Quantity = what.Quantity.value;

	var IncludeDiscount = true;

	calc_quote( PrintType,DeliveryType,PostalType,CardType,Laminated,Quantity,IncludeDiscount);
	
}


/* EOF */
