// JavaScript Document
function Validate()
{
	// Check if Question 1 is answered
	if ( valRadiobutton(document.frmTest.q1) == false )
	{
		alert('You have not answered Question 1. Please choose an option.');
		return false;
	}

	// Check if Question 2 is answered
	if ( valRadiobutton(document.frmTest.q2) == false )
	{
		alert('You have not answered Question 2. Please choose an option.');
		return false;
	}

	// Check if Question 3 is answered
	if ( valRadiobutton(document.frmTest.q3) == false )
	{
		alert('You have not answered Question 3. Please choose an option.');
		return false;
	}

	// Check if Question 4 is answered
	if ( valRadiobutton(document.frmTest.q4) == false )
	{
		alert('You have not answered Question 4. Please choose an option.');
		return false;
	}

	// Check if Question 5 is answered
	if ( valRadiobutton(document.frmTest.q5) == false )
	{
		alert('You have not answered Question 5. Please choose an option.');
		return false;
	}

	// Check if Question 6 is answered
	if ( valRadiobutton(document.frmTest.q6) == false )
	{
		alert('You have not answered Question 6. Please choose an option.');
		return false;
	}

	// Check if Question 7 is answered
	if ( valRadiobutton(document.frmTest.q7) == false )
	{
		alert('You have not answered Question 7. Please choose an option.');
		return false;
	}

	// Check if Question 8 is answered
	if ( valRadiobutton(document.frmTest.q8) == false )
	{
		alert('You have not answered Question 8. Please choose an option.');
		return false;
	}

	// Check if Question 9 is answered
	if ( valRadiobutton(document.frmTest.q9) == false )
	{
		alert('You have not answered Question 9. Please choose an option.');
		return false;
	}

	// Check if Question 10 is answered
	if ( valRadiobutton(document.frmTest.q10) == false )
	{
		alert('You have not answered Question 10. Please choose an option.');
		return false;
	}

	return true;
}