function userFormSubmit(form)
{
	if (!(form.agree.checked)){
		alert ('You need to accept end-user agreement.');
		return false;
	}
	return true;
}