// 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.ColorTD.style.backgroundColor='#E8E5EC';
	}
	if ( val < 1 ){ // Nothing has been selected on 
			document.all.ColorTD.style.backgroundColor='#FFFFFF';
	}

	setFunctionality();

}
//*****************************************************************************************************************************************
// This function checks to make sure that all selections have been made before submitting
//*****************************************************************************************************************************************
function checkComplete(){
	found_it = getSelectedValue('matColor');
	
	 if ( found_it != "notSelected" ){
		 document.auBuilderForm.submit(); 
	}	
	else{
		alert("Please Finish all necessary selections before submitting album to basket.");
	}

}
