function validate_input()
{
	/* #############################################################################
		THE NEXT 3 LINES ARE YOUR EDITABLE FIELDS FOR 
		EMAIL SUBJECT, 
		RECIPIENTS EMAIL ADDRESSES (Separated by commas just as is),
		REDIRECT FILE URL (the htm file the user is redirected to after submission)
	#################################################################################  */
	var subject = "Comments And Feedback";
	var recipient_email = "kwill@thoughtspeed.biz, mneary@thoughtspeed.biz";
	var redirect_file = "http://www.thoughtspeed.biz/TS HTM/Feedback_Return.htm";
		
	document.getElementById('subject').value = subject;
	document.getElementById('recipient_email').value = recipient_email;
	document.getElementById('redirect_file').value = redirect_file;
			
	if (document.getElementById('firstname').value == "")
	{
		alert("Please enter your first name!");
		document.getElementById('firstname').focus();
		return false;
	}
	if (document.getElementById('lastname').value == "")
	{
		alert("Please enter your last name!");
		document.getElementById('lastname').focus();
		return false;
	}
	if (document.getElementById('company').value == "")
	{
		alert("Please enter your company!");
		document.getElementById('company').focus();
		return false;
	}
	if (document.getElementById('phone').value == "")
	{
		alert("Please enter your phone!");
		document.getElementById('phone').focus();
		return false;
	}
	if (document.getElementById('email').value == "")
	{
		alert("Please enter your email!");
		document.getElementById('email').focus();
		return false;
	}
	if (document.getElementById('needs').value == "")
	{
		alert("Please tell us about your needs!");
		document.getElementById('needs').focus();
		return false;
	}
	var selbox = document.getElementById('referal');
	if (selbox.selectedIndex == 0)
	{
		alert("Please select how you found us!");
		selbox.focus();
		return false;
	}
	return true;	
}
