function ValidateData() {
	var CanSubmit = false;

	// Check to make sure that the full name field is not empty.
	CanSubmit = ForceEntry(document.forms[0].txtName,"Name");

	// Check to make sure that the job title field is not empty.
	if (CanSubmit == false)
	{
		return CanSubmit;
	} else {
		CanSubmit = ForceEntry(document.forms[0].txtJobTitle,"Job Title");
	}

	// Check to make sure that the company field is not empty.
	if (CanSubmit == false)
	{
		return CanSubmit;
	} else {
		CanSubmit = ForceEntry(document.forms[0].txtCompany,"Company");
	}

	// Check to make sure that the address field is not empty.
	if (CanSubmit == false)
	{
		return CanSubmit;
	} else {
		CanSubmit = ForceEntry(document.forms[0].txtAddress,"Address");
	}

	// Check to make sure that the phone field is not empty.
	if (CanSubmit == false)
	{
		return CanSubmit;
	} else {
		CanSubmit = ForceEntry(document.forms[0].txtPhone,"Phone");
	}

	// Check to make sure that the email field is valid.
	if (CanSubmit == true)
	{
		CanSubmit = isEmail(document.forms[0].txtEmail);
		if (CanSubmit == false)
		{
			alert("Please enter a valid Email")
			document.forms[0].txtEmail.focus();
			document.forms[0].txtEmail.select();
		}
	}

   return CanSubmit;
}