<!--// form check for send forms
function checkForm() {
	if (document.mailform.NameFirst.value == "") {
		alert("Please provide your first name.");
		return false;
	}
	else if (document.mailform.NameLast.value == "") {
		alert("Please provide your last name.");
		return false;
	}
	else if (document.mailform.SenderEmail.value.indexOf("@") == -1 ||
		document.mailform.SenderEmail.value.indexOf(".") == -1 ||
		document.mailform.SenderEmail.value == "") {
		alert("Please provide your email address in proper format. (Example: john@doe.com)");
		return false;
	}
	else {
		return true;
	}
}
//-->