function check()
{
	if(document.checkbox_form.agree.checked == true)
	{
		return true;
	}
	else
	{
		alert("You must agree to the terms to continue");
		return false;
	}
}