function Agree_Validator(formname)
{

	if (formname.Read.checked == false)
	{
		alert("Please read the information on this screen then check the box indicating you have read it.")
		formname.Read.focus();
		return (false);
	}

	if ((formname.Agree[0].checked == false) && (formname.Agree[1].checked == false))
	{
		alert ("Please indicate whether you agree or disagree with the above statement.");
		formname.Agree[0].focus();
		return (false);
	}

	return (true);
}