function checkCheckBox(f) {
	if (f.agree.checked == false) {
		alert('You must accept these terms to continue.');
		return false;
		}
		else
		{
		return true;
		}
	}
	
function checkCheckBoxBackup( terms, form, checkbox) {
	target1 = document.getElementById( terms );
	target2 = document.getElementById( form );	
	if (checkbox.agree.checked == false) {
		alert('You must accept these terms to continue.');
		target1.style.display = "block";
		target2.style.display = "none";
		return false;
		}
		else
		{
		target1.style.display = "none";
		target2.style.display = "block";
		return false;
		}
	}