function Validate()
{
	var thisForm = document.AnswerForm;
	var name = thisForm.qaSubmitter.value;
	var aText = thisForm.qaAnswerText.value;
	
	if (name.length == 0)
	{
		alert("You must enter a name.");
		thisForm.qaSubmitter.focus();
		return false;
	}
	
	if (aText.length == 0)
	{
		alert("Please enter your answer.");
		thisForm.qaAnswerText.focus();
		return false;
	}

	return true;
}
