<!--
function checkbox_checker(solution)
{

var checkbox_choices = 0;

for (counter = 0; counter < checkbox_form.checkbox.length; counter++)
{

if (checkbox_form.checkbox[counter].checked)
{ checkbox_choices = checkbox_choices + 1; }

}

if (checkbox_choices < 2 )
{
alert("Please select the attributes which apply to you")
return (false);
}

alert("Congratulations!  You qualify for "+solution);
return (true);
}
-->