// JavaScript Document
function checkEmail () {
  if (document.form1.Email.value != document.form1.Confirmation_Email.value) {
	alert('Email addresses do not match');
	document.MM_returnValue = false;
  } else {
	document.MM_returnValue = true;
  }
}

function llarfvestingcheck () {
  
  if (document.form1.Term_Agreement.checked) {
	document.MM_returnValue = true;
  } else {
	alert('Please mark the checkbox if you have read and understood the Statement on Vesting.');
	document.MM_returnValue = false;
  }
}
