// JavaScript Document

//*****************************************************************************************************************************************
// This function checks to make sure that all sections are enabled or disabled correctly
//*****************************************************************************************************************************************
function setFunctionality(){
	
}

//*****************************************************************************************************************************************
// This function is used ro reset all those sections that follow the most recently selected one
//*****************************************************************************************************************************************
function resetValues(val) { //v3.0

	setFunctionality();

}

//*****************************************************************************************************************************************
// This function checks to make sure that all selections have been made before submitting
//*****************************************************************************************************************************************
function checkComplete(){
	found_it = getSelectedValue('embColor');
	found_it2 = getSelectedValue('embText');

	var qytMini = document.auBuilderForm.qytMini.value;
	var qytSmall = document.auBuilderForm.qytSmall.value;
	var qytMedium = document.auBuilderForm.qytMedium.value;
	var qytLarge = document.auBuilderForm.qytLarge.value;
	
	if ( qytMini != "" || qytSmall != "" || qytMedium != "" || qytLarge != ""){
		document.auBuilderForm.submit();
	}
	else{
		alert("Please enter in a quantity for at least on size before submitting form.");
	}

}
