function checkFields(f)
{
	outString = "Please add/change the data in the following fields\n\n";
	
	focusSet = 0;
	if((isBlank(document.apply.firstname.value)) || (isBlank(document.apply.lastname.value)) || 
 
	    (isBlank(document.apply.streetaddress.value)) || (isBlank(document.apply.city.value)) || 
		(isBlank(document.apply.state.value)) || (isBlank(document.apply.zipcode.value))  ||
		(!isNumeric(document.apply.zipcode.value)) || (isBlank(document.apply.telphone.value))  || (isBlank(document.apply.daypreferred.value)))
	{
		if(isBlank(document.apply.firstname.value))
		{
			outString += "-- Your First Name\n";
			document.apply.firstname.focus();
			focusSet = 1;
		}
		if(isBlank(document.apply.lastname.value))
		{
			outString += "-- Your Last Name\n";
			document.apply.lastname.focus();
			focusSet = 1;
		}
		if(isBlank(document.apply.streetaddress.value))
		{
			
			outString += "-- Street Address\n";
			if(focusSet == 0)
			{
				document.apply.streetaddress.focus();
				focusSet = 1;
			}
		}
		if(isBlank(document.apply.telphone.value) || (!isNumeric(document.apply.telphone.value)))
		{
			
			outString += "-- Telephone Number\n";
			if(focusSet == 0)
			{
				document.apply.telphone.focus();
				focusSet = 1;
			}
		}
		if(isBlank(document.apply.city.value))
		{
			
			outString += "-- City\n";
			if(focusSet == 0)
			{
				document.apply.city.focus();
				focusSet = 1;
			}
		}
		if(isBlank(document.apply.state.value))
		{
			
			outString += "-- State\n";
			if(focusSet == 0)
			{
				document.apply.state.focus();
				focusSet = 1;
			}
		}
		if(isBlank(document.apply.zipcode.value) || (!isNumeric(document.apply.zipcode.value)))
		{
			
			outString += "-- Zip Code\n";
			if(focusSet == 0)
			{
				document.apply.zipcode.focus();
				focusSet = 1;
			}
		}
		if(isBlank(document.apply.daypreferred.value))
		{
			outString += "-- Day of the Week Preferred";	
			if(focusSet == 0)
			{
				document.apply.daypreferred.focus();
							focusSet = 1;				
			}
		}
		
		alert(outString);
		return false;
	}
	alert("Thank you!  Your request has been processed.");
	return true;
} 