	//Define objects used:
	//First, the Product Quantity ("Pquantity") fields:

	function Pquantity(name){
	   this.name=name;
	CTQuant = new Pquantity(Creating_Quantity);
	ETQuant = new Pquantity(Exploring_Quantity);
	ITQuant = new Pquantity(Inspiration_Quantity);
	HTQuant = new Pquantity(Healing_Quantity);
	RTQuant = new Pquantity(Relationship_Quantity);
	PTQuant = new Pquantity(Prosperity_Quantity);
	}

	//Secondly, the Product Total ("Ptotal") fields:

	function Ptotal(name){
	   this.name=name;
	CTTotal = new Ptotal(Creating_Total);
	ETTotal = new Ptotal(Exploring_Total);
	ITTotal = new Ptotal(Inspiration_Total);
	HTTotal = new Ptotal(Healing_Total);
	RTTotal = new Ptotal(Relationship_Total);
	PTTotal = new Ptotal(Prosperity_Total);
	}

	function Calculator(CTQuant, ETQuant, ITQuant, HTQuant, RTQuant, PTQuant) {

	var Creating_Quantity = document.order.Creating_Quantity.value;
	var Exploring_Quantity = document.order.Exploring_Quantity.value;
	var Inspiration_Quantity = document.order.Inspiration_Quantity.value;
	var Healing_Quantity = document.order.Healing_Quantity.value;
	var Relationship_Quantity = document.order.Relationship_Quantity.value;
	var Prosperity_Quantity = document.order.Prosperity_Quantity.value;

	CTQuant = Creating_Quantity;
	ETQuant = Exploring_Quantity;
	ITQuant = Inspiration_Quantity;
	HTQuant = Healing_Quantity;
	RTQuant = Relationship_Quantity;
	PTQuant = Prosperity_Quantity;

	Var CTTotal = (Math.round(CTQuant*15.00*100)/100);
	var ETTotal = (Math.round(ETQuant*15.00*100)/100);
	var ITTotal = (Math.round(ITQuant*59.95*100)/100);
	var HTTotal = (Math.round(HTQuant*59.95*100)/100);
	var RTTotal = (Math.round(RTQuant*59.95*100)/100);
	var PTTotal = (Math.round(PTQuant*59.95*100)/100);

	CTTotal = document.order.Creating_Total.value;
	ETTotal = document.order.Exploring_Total.value;
	ITTotal = document.order.Inspiration_Total.value;
	HTTotal = document.order.Healing_Total.value;
	RTTotal = document.order.Relationship_Total.value;
	PTTotal = document.order.Prosperity_Total.value;

	var SubTotal = (CTTotal+ETTotal+ITTotal+HTTotal+RTTotal+PTTotal);
	SubTotal = document.order.Subtotal.value;

	var Total = ((Math.round((SubTotal*100)*1.0775))/100);
	Total = document.order.Total.value;

	var Balance = (total + 10);
	Balance = document.order.Balance.value;
}

