


function validate_feedbackform(acform)
{
	if (acform.customer_name.value=="") {
		window.alert("Please enter your name in the form.");
		acform.customer_name.focus();
		return false;
	}	
	if (acform.customer_address.value=="") {
		window.alert("Please enter your address in the form.");
		acform.customer_address.focus();
		return false;
	}
	if (acform.customer_telephone.value=="") {
		window.alert("Please enter your phone number in the form.");
		acform.customer_telephone.focus();
		return false;
	}			
	if (acform.customer_email.value=="") {
		window.alert("Please enter your email address in the form.");
		acform.customer_email.focus();
		return false;
	}	
	return true;
}

function validate_subscriberaddform(acform)
{
	if (acform.email.value=="") {
		window.alert("Please enter your email address in the form.");
		acform.email.focus();
		return false;
	}	
	return true;
}

function validate_testimonialform(acform)
{
	if (acform.customer_name.value=="") {
		window.alert("Please enter your name in the form.");
		acform.customer_name.focus();
		return false;
	}	
	if (acform.customer_address.value=="") {
		window.alert("Please enter your address in the form.");
		acform.customer_address.focus();
		return false;
	}
	if (acform.customer_telephone.value=="") {
		window.alert("Please enter your phone number in the form.");
		acform.customer_telephone.focus();
		return false;
	}			
	if (acform.customer_email.value=="") {
		window.alert("Please enter your email address in the form.");
		acform.customer_email.focus();
		return false;
	}	
	return true;
}

