
function checkCheckBoxAgree(c)
{
	if (c.agree.checked == false)
	{ 
		alert("You must agree to the terms and conditions to continue!"); 
		return false;
	}
	else
	{ 
		return true;
	}
}