function CheckEmail() {
	if (!document.forms['theform'].email.value) {
		document.getElementById('ARerr').style.display = "inline";
		document.forms['theform'].email.focus();
	}
	else {
		document.forms['theform'].submit();
	}
}