							function validateForm() 
							{
							 var okSoFar=true
							 with (document.testimonial)
							 {
							  if (test_name.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your name.")
								test_name.focus()
							  }
							  if (test_loc.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your location.")
								test_loc.focus()
							  }
							  if (testimonial.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your testimonial.")
								testimonial.focus()
							  }
							  var foundAt = email.value.indexOf("@",0)
							  if (foundAt < 1 && okSoFar)
							  {
								okSoFar = false
								alert ("Please enter a valid email address.")
								email.focus()
							  }
							  
							  if (okSoFar==true)  submit();
							 }
							}
