
function validFeedback(myForm)
{
	var strTmp = ""
	var msg = ""

	strTmp = trim(myForm.UserName.value)
	myForm.UserName.value = strTmp
	if (strTmp == "") 
	{
		alert("The Name field is a required entry. Please correct the entry and try again.");
		myForm.UserName.focus()
		return false
	}

	strTmp = trim(myForm.Email.value)
	myForm.Email.value = strTmp
	if (strTmp == "") 
	{
		alert("The E-mail field is a required entry. Please correct the entry and try again.");
		myForm.Email.focus()
		return false
	}

	strTmp = trim(myForm.Comment.value)
	myForm.Comment.value = strTmp
	if (strTmp == "") 
	{
		alert("The Comment field is a required entry. Please correct the entry and try again.");
		myForm.Comment.focus()
		return false
	}

	return true
}

