function checkAgree(theForm) 
{
	if (!theForm.agree.checked) 
	{
		alert('You must agree to the terms and conditions to proceed');
		return false;
	}
	return true;
}


function checkAgree2(box_checked) 
{
	if (!box_checked.checked) 
	{
		alert('You must agree to the terms and conditions to proceed');
		return false;
	}
	return true;
}
