function validFormSup(passForm)
{
	function buttonPairCheck (formElement, errorText)
	{
		var button1 = passForm.elements[formElement][0];
		var button2 = passForm.elements[formElement][1];
		if ((!button1.checked) && (!button2.checked))
		{
			alert("Please " + errorText);
			return false;
		}
	}
 
	if (buttonPairCheck('q1', "indicate whether you paid up front for the PPI without being advised of other options.") == false)
	{
		return false;
	}
	if (buttonPairCheck('q2', "choose the appropriate answer for Question 2.") == false)
	{
		return false;
	}
	if (buttonPairCheck('q3', "choose the appropriate answer for Question 3.") == false)
	{
		return false;
	}
	if (buttonPairCheck('q4', "choose the appropriate answer for Question 4.") == false)
	{
		return false;
	}
	if (buttonPairCheck('q5', "choose the appropriate answer for Question 5.") == false)
	{
		return false;
	}
	return true;
}
