<!-- 
	function fvalidate(form)
	{
		var errStr = '';
		var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;
		var nameRegEx = /^[A-Z\s]{5,50}$/i;
		name = form.aa_Name.value;
		if (!name.match(nameRegEx))
		{
			errStr += 'Please fill in the Name field, only letters and spaces allowed\n';
		}
		if (form.a_Email.value.length < 5)
		{
			errStr += "Please fill in the Email field\n";

		}
		else
			if (form.a_Email.value.search(emailRegEx) == -1)
			{
				errStr += "Please check the Email Address format\n";
			}


		if (errStr.length > 0)
		{
			alert(errStr);
			return false;
		}
		else
			return true;
	}
//-->