<!--

function checkSubmitted()
{
	if(!document.regform.disclaimer.checked)
	{
	alert("You must agree to the terms.");
	return false;
	}
	else
	{
	return true;
	}
	

}
//-->