	var checkList = new Array("name_first", "name_last", "email", "email_confirm");function Require() {for (count = 0; count < checkList.length; count++) {if (document.getElementById(checkList[count]).value == "" || document.getElementById(checkList[count]).value == "Required" || (checkList[count] == "email" && (document.getElementById(checkList[count]).value.indexOf("@") == -1 || document.getElementById(checkList[count]).value.indexOf(".") == -1))) {document.getElementById(checkList[count]).value = "Required";document.getElementById(checkList[count]).focus();alert("Required fields are marked with an asterisk (*).");return false;}else if (document.getElementById("email").value != document.getElementById("email_confirm").value) {alert("Please make sure you've entered a valid email address and both email fields match exactly.");document.getElementById(checkList[count]).focus();return false;}return true;}
