function validateSelectionForm1(){
	 	if (( document.frmSelection.rdquotetype[0].checked==false) && (document.frmSelection.rdquotetype[1].checked==false) && (document.frmSelection.rdquotetype[2].checked==false ))
	 	{
	 		alert("Please select Quote Type");
	 		return false;
	 	}
		else
		{

			if (document.frmSelection.rdquotetype[0].checked)
					document.frmSelection.action="../health_insurance.php";
			else if (document.frmSelection.rdquotetype[2].checked)
					document.frmSelection.action="../life_insurance.php";
			else if (document.frmSelection.rdquotetype[1].checked)
					document.frmSelection.action="../small_business_insurance.php";
			document.frmSelection.submit();
			return true;
		}
}

function setradioval(val)
{
	var val;
	if (val==1) document.frmSelection.rdquotetype[0].checked=true;
	else if (val==2) document.frmSelection.rdquotetype[1].checked=true;
	else if (val==3) document.frmSelection.rdquotetype[2].checked=true;
	//return false;
}