function checkApply()
{
	var returnValue = false;
	var FoodCompany = document.getElementById('FoodCompany').value;
	var FoodDescription = document.getElementById('FoodDescription').value;
	var FoodPostCode = document.getElementById('FoodPostCode').value;
	var FoodEmail = document.getElementById('FoodEmail').value;
	
	if(FoodCompany == "" || FoodDescription == "" || FoodPostCode == "" || FoodEmail == "")
	{
		if(FoodCompany == "")
		{
			document.getElementById('fbusinessname').style.color="#ff0000";
		}
		if(FoodDescription == "")
		{
			document.getElementById('fdescription').style.color="#ff0000";
		}
		if(FoodPostCode == "")
		{
			document.getElementById('fpostcode').style.color="#ff0000";
		}
		if(FoodEmail == "")
		{
			document.getElementById('femail').style.color="#ff0000";
		}
	}
	else
	{
		returnValue = true;
	}
	return returnValue;
}



