// 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

	if ( val < 2 ){
			document.all.CoverColorTD.style.backgroundColor='#E8E5EC';
	}
	if ( val < 1 ){ // Nothing has been selected on 
			document.all.CoverColorTD.style.backgroundColor='#FFFFFF';
	}

	setFunctionality();

}

//*****************************************************************************************************************************************
// This function checks to make sure that all selections have been made before submitting
//*****************************************************************************************************************************************
function checkComplete(){
	found_it = getSelectedValue('coverColor');
	numBags = document.auBuilderForm.qtyMed.value;

	if ( found_it != "notSelected" && numBags != "" && numBags != 0 ){
		document.auBuilderForm.submit();
	}
	else{
		alert("Please select both a bag color and quantity before submitting form.");
	}


}
