function checkform()
{
	if (document.feedback.Name.value == '')
	{
		alert('Please fill in Name');
		return false;
	}

	else if (document.feedback.Company.value == '')
	{
		// something else is wrong
		alert('Please fill in Company Name');
		return false;
	}

	else if (document.feedback.Email.value == '')
	{
		// something else is wrong
		alert('Please fill in your email address');
		return false;
	}
	
	else if (document.feedback.Telephone.value == '')
	{
		// something else is wrong
		alert('Please fill in your contact land line number');
		return false;
	}	
	
	else if (document.feedback.Position.value == '')
	{
		// something else is wrong
		alert('Please fill in your Position');
		return false;
	}	
	
	else if (document.feedback.Description.value == '')
	{
		// something else is wrong
		alert('Please fill in a brief description of the report you are requesting');
		return false;
	}	
	
		else if (document.feedback.SearchCriteria.value == '')
	{
		// something else is wrong
		alert('Please fill in the search criteria on your report or type None');
		return false;
	}	
	
		else if (document.feedback.Layout.value == '')
	{
		// something else is wrong
		alert('Please fill in any specific layout requirements you have or type None');
		return false;
	}	
	

	else if (!document.feedback.DiscussOrEmail[0].checked &&
!document.feedback.DiscussOrEmail[1].checked)
	{
	// no radio button is selected
alert('Please state whether you would like to discuss further or to email you the report when created');
		return false;
	}
	
	else if (!document.feedback.Cost.checked)
	{
	// no radio button is selected
alert('Please confirm that you understand the cost');
		return false;
	}		
	
	else if (!document.feedback.Authority.checked)
	{
	// no radio button is selected
alert('Please confirm that you have authority to request this report');
		return false;
	}	

	return true;
}