	function validateStoreForm(theForm) {
		// make sure they have selected a size
		if (theForm.os0.value == "") {
			alert ("You must enter a size!");
			theForm.os0.focus();
			return false;
			}
		// make sure they have selected a color
		if (theForm.color.value == "") {
			alert ("You must select a color!");
			theForm.color.focus();
			return false;
			}
		theForm.item_number.value = theForm.color.value;
		return true;
		}
	function validateStoreForm2(theForm) {
	 	// make sure they have entered a number
		if (theForm.os1.value == "") {
			alert ("You must enter a number.");
			theForm.os1.focus();
			return false;
			}
		// make sure they have selected a size
		if (theForm.os0.value == "") {
			alert ("You must enter a size!");
			theForm.os0.focus();
			return false;
			}
		// make sure they have selected a color
		if (theForm.color.value == "") {
			alert ("You must select a color!");
			theForm.color.focus();
			return false;
			}
		theForm.item_number.value = theForm.color.value;
		return true;
		}
	function validateStoreForm3(theForm) {
		// make sure they have selected a size
		if (theForm.os0.value == "") {
			alert ("You must enter a size!");
			theForm.os0.focus();
			return false;
			}
		}
		