function changeQuantity() {
	document.cartItems.recalculate.value = 1
	document.cartItems.submit()

}

function validateCartForm(theForm) {
  if (theForm.fieldsRequired.value == 1 ) {
    if (theForm.iConfirm.checked != true){
		alert("Please confirm the information you have provided is accurate.");
		theForm.iConfirm.focus();
		return(false);
	}}
 return(true);
}