// JavaScript Document

function validateTestimonial(){

	if (document.testimonial.fname.value.length == 0){
		alert("Please enter your first name");
		document.testimonial.fname.focus();
		return false;		
	}
	
	if (document.testimonial.lname.value.length == 0){
		alert("Please enter your last name");
		document.testimonial.lname.focus();
		return false;		
	}
	
	if (document.testimonial.email.value.length == 0){
		alert("Please enter your e-mail");
		document.testimonial.email.focus();
		return false;		
	}

	if (document.testimonial.occupation.value.length == 0){
		alert("Please enter your occupation");
		document.testimonial.occupation.focus();
		return false;		
	}
	
	if (document.testimonial.city.value.length == 0){
		alert("Please enter your location");
		document.testimonial.city.focus();
		return false;		
	}

	if (document.testimonial.testimonial.value.length == 0) {
		alert("Please enter your testimonial");
		document.testimonial.testimonial.focus();
		return false;
	}
	
	return true;
	
}


