
function checktheForm(CF_this)
{	
	if ( !hasValue(CF_this.f_name, "TEXT") || CF_this.f_name.value == "Your Name" ) { if (!onError(CF_this.f_name, "You Must Enter a Name")) { return false; } }
	
	if ( !hasValue(CF_this.f_email, "TEXT") || CF_this.f_email.value == "Your Email" ) { if (!onError(CF_this.f_email, "You Must Enter an Email Address")) { return false; } }
	
	if ( !checkemail(CF_this.f_email.value) ) { if (!onError(CF_this.f_email, "You Have Entered and an Invalid Email Address")) { return false; } }
	
	return true;
}

