function formValidation() {
    missinginfo = "";
    if (document.RegistrationForm._01_Name.value=="") {
    missinginfo += "\n     - Name";
    }
   

    if (document.RegistrationForm._03_Phone_Contact.value=="") {
    missinginfo += "\n     - Phone Contact";
    }


    if (document.RegistrationForm._04_Email_Contact=="") {
    missinginfo += "\n     - Email Contact";
    }
	
	
	 if (document.RegistrationForm._06_Payment.value=="--") {
    missinginfo += "\n     - Please Select a Payment Option";
    }

    if (missinginfo != "") {
    missinginfo = "The following fields are required.\n" +
    "_____________________________\n" +
    missinginfo + "\n_____________________________\n" +
    "\nPlease ensure that they're filled in and submit again.";
    alert(missinginfo);
    return false;
    }
    else return true;
    }
