function formValidation() {
    missinginfo = "";
    if (document.donationsForm._01_ccra_id.value=="") {
    missinginfo += "\n     - Charity CCRA I.D. number";
    }
   
    if (document.donationsForm._02_contact_name.value=="") {
    missinginfo += "\n     - Contact Name & Title";
    }

    if (document.donationsForm._04_mailing_adress.value=="") {
    missinginfo += "\n     - Mailing Address";
    }


    if (document.donationsForm._05_phone.value=="") {
    missinginfo += "\n     - Phone Number";
    }
	
	 if (document.donationsForm._12_due_date.value=="") {
    missinginfo += "\n     - Due date for funds or in-kind donations";
    }
	
	 if (document.donationsForm._13_amount_or_description.value=="") {
    missinginfo += "\n     - Amount of funds or description of in-kind requested";
    }

    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;
    }
