function check_required(){
    var okgo = true;
    var msg = "Please check the following items:\n";
	var email1 = document.getElementById("email");
	var email2 = document.getElementById("email2");
	
    $("*[required='required']").each(function(){
//        console.log("checking: " + this.value) + " for " + $(this).attr("name");
        if(this.value == ""){
            okgo = false;
            msg += "\n" + $(this).attr("id") + " is a required field.";
        }
    });
	
    if (email1.value != email2.value) {
		okgo = false;
		msg += "\n" + "Email Address and Confirm Email do not match.  Please make sure you've entered your e-mail address correctly in both fields.";
	}
	
    if(!okgo){
       alert(msg);
    }
    
    return okgo;
}