function verify()
{
	if (document.hOrder.agree.checked == false)
	{
		alert('It\'s necessary that you first agree to the terms of service.');
		return false;
		}
	else
	return true;
	}
