function checkbox_checker()
{
	if (!document.unisys_comments.terms.checked)
	{
		alert("Please read the Terms and Conditions, then click the checkbox\nto indicate that you agree to them before proceeding.")
		return false;
	}
	else
	{
		return true;
	}
}