function checkCheckBox(f)
{
	if (f.agree.checked == false)
	{
		alert('You must agree to the terms and conditions to proceed to checkout.');
		return false;
	}
	else
	{
		return true;
	}
}
