function checktheForm(CF_this)
{
	if ( !hasValue(CF_this.f_contactname, "TEXT") ) { if (!onError(CF_this.f_contactname, "You Must Enter the Name")) { return false; } }

	if ( !hasValue(CF_this.f_email, "TEXT") ) { if (!onError(CF_this.f_email, "You Must Enter an Email Address")) { return false; } }

	if ( hasValue(CF_this.f_email,"TEXT") && !checkemail(CF_this.f_email.value) ) { if (!onError(CF_this.f_email, "You Have Entered an Invalid Email Address")) { return false; } }

	return true;
}