function CheckFormAFB()
{
//First Name
if (document.AF.fname.value == "")
		{
		alert ('Please enter your Name!');
		document.AF.fname.focus();
		return false;
		} 

if (/^\d+$/.test(AF.homephone.value) == false)
		{
		alert ('Invalid Primary Phone#, please enter phone number with no spaces e.g. 905xxxxxx');
		document.AF.homephone.focus();
		return false;
		} 
if (document.AF.otherphone.value != "")	
{
		if (/^\d+$/.test(AF.otherphone.value) == false)
		{
		alert ('Invalid Secondary Phone#, please enter phone number with no spaces e.g. 905xxxxxx');
		document.AF.otherphone.focus();
		return false;
		} 
}
		
if (/^([0-9a-zA-Z]([-.\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\w]*[0-9a-zA-Z]\.)+[a-zA-Z]{2,9})$/.test(AF.email.value) == false)
		{
		alert ('Invalid Email Address');
		document.AF.email.focus();
		return false;
		} 

if (document.AF.address.value == "")
		{
		alert ('Invalid Address!');
		document.AF.address.focus();
		return false;
		} 

if (document.AF.applyingfor.value == "")
		{
		alert ('Please select whether or not you\'ll like to be considered for auditor if not chosen for participant');
		document.AF.applyingfor.focus();
		return false;
		} 
else
{
		if (document.AF.alternative[0].checked == false && document.AF.alternative[1].checked == false)  
			{
			alert ('Required Field!');
			return false;
			} 
	
	}

	{
	return true;
	}
	
}

