function checkCheckBox(f)
{
	if (f.agree.checked) return true;
	alert('You must agree to the terms & conditions to continue!');
	return false;
}
