// Form Validation JavaScript Function
function ValidateForm()
	{
		var varText = 'Please note that you did not complete all manditory fields!\n\n';
	    if (document.Feedback.Preference.selectedIndex == 0)
		{
			varText = varText + 'Please select an Enquiry Preference.';
			alert(varText);
			document.Feedback.Preference.focus();
			return false;
		}
			else if ( document.Feedback.Preference.selectedIndex == 1)
			{
				varText = varText + 'Please select an Enquiry Preference.';
				alert(varText);
				document.Feedback.Preference.focus();
				return false;
			}
			else if (document.Feedback.Name.value == '')
			{
				varText = varText + 'Please enter your Name / Firstname.';
				alert(varText);
				document.Feedback.Name.focus();
				return false;
			}
			else if (document.Feedback.Surname.value == '')
			{
				varText = varText + 'Please enter your Surname / Lastname.';
				alert(varText);
				document.Feedback.Surname.focus()
				return false;
			}
				else if (document.Feedback.Email.value == '')
			{
			varText = varText + 'Please enter your Email Address.';
			alert(varText);
			document.Feedback.Email.focus();
			return false;
			}
			else if (document.Feedback.Cell.value == '')
			{
				varText = varText + 'Please enter your Cell / Mobile.';
				alert(varText);
				document.Feedback.Cell.focus();
				return false;
			}
			else if (document.Feedback.Tel.value == '')
			{
				varText = varText + 'Please enter your Telephone.';
				alert(varText);
				document.Feedback.Tel.focus();
				return false;
			}
			else if (document.Feedback.Comments.value == '')
			{
				varText = varText + 'Please enter any Comments, Questions, Special Requests or Suggestions.';
				alert(varText);
				document.Feedback.Comments.focus();
				return false;
			}
			else if (document.Feedback.Located.value == '')
			{
				varText = varText + 'Please enter how you found us.';
				alert(varText);
				document.Feedback.Located.focus();
				return false;
			}
			else
			{
				return true;
			}
	}
