function validateForm(theForm)
{
	if (theForm.email.value == "")
	{
		alert("Please enter your email address");
		return false;
	}
	if (theForm.first_name.value == "" || theForm.last_name.value == "")
	{
		alert("Please enter your name");
		return false;
	}
	if (theForm.company.value == "")
	{
		alert("Please enter your company");
		return false;
	}
	if (theForm.executive_title.value == "")
	{
		alert("Please enter your title");
		return false;
	}
	if (theForm.address.value == "")
	{
		alert("Please enter your shipping address");
		return false;
	}
	if (theForm.purchase_decisions.value == "" ||
		theForm.external_disk_storage.value == "" ||
		theForm.potential_technologies.value == "" ||
		theForm.current_technologies.value == "" ||
		theForm.challenges.value == "" ||
		theForm.next_issue.value == "")
	{
		alert("Please answer all the questions provided");
		return false;
	}
	return true;
}
