function validate_miniform(theform){
	var useremail;
	var name = theform.Name;
	var email = theform.Email;
	var business = theform.BusinessType;
	var feedback = theform.FeedBackDescription;

	useremail=isEmail(email.value);

	if (name.value==""){
		alert("Name cannot be blank.");
		name.focus();
		return false;
	}

	if (useremail==false){
		alert("Please enter your proper email address.");
		email.focus();
		return false;
	}

	if (business.selectedIndex==0){
		alert("Please select the business type from the list.");
		business.focus();
		return false;
	}

	if (feedback.value==""){
		alert("Project description cannot be blank.");
		feedback.focus();
		return false;
	}
}
