
<!--

function checking(myForm){



	var name = myForm.tname.value
	var phone = myForm.phone.value
	var email = myForm.email.value
	var allError = 'These following errors were encountered during the submission process:\n\n'
	var errorFound = 0

	if(name == ''){
		allError += '-Your Name was not correctly entered\n'
		errorFound++
	}
	if(phone == ''){
		allError += '-Your Phone Number was not correctly entered\n'
		errorFound++
	}
	if(email == ''){
		allError += '-Email Address was not correctly entered\n'
		errorFound++
	}
	if(errorFound > 0){

		alert(allError+'\nYou must complete the form before continuing the submission process.\n')

		return false

	}

	else{

		return true

	}

}

//-->


