function FormValidator(theForm){

	if (theForm.Store.selectedIndex < 0)
		{
		alert("Please select one of the \"Store\" options.");
		theForm.Store.focus();
		return (false);
		}
	if (theForm.Store.selectedIndex == 0)
		  {
			alert("The first \"Store\" option is not a valid selection.  Please choose one of the other options.");
			theForm.Store.focus();
			return (false);
		  }
		
	if (theForm.Location.value == "")
		  {
			alert("Please enter a value for the \"Location\" field.");
			theForm.Location.focus();
			return (false);
		  }
		
	if (theForm.Comments.value == "")
		  {
			alert("Please enter a value for the \"Comments\" field.");
			theForm.Comments.focus();
			return (false);
		  }
	theForm.SubmitCheck.value == "Submitted";
	return (true);
}
