function paymentValidate(theForm) {
    //alert("Payments are currently disabled");
    //return false;
    if (theForm.property_address.value == "")
    {
        if(alerts == true) {
            alert ("You must supply a property address");
        }
        return false;
    }
    if (theForm.payment_for.value == "")
    {
        if(alerts == true) {
            alert ("Please enter a reason for payment (payment for)");
        }
        return false;
    }
    if (theForm.payment_amount.value == "")
    {
        if(alerts == true) {
            alert ("You must supply an amount");
        }
        return false;
    }
    if (theForm.contact_name.value == "")
    {
        if(alerts == true) {
            alert ("You must supply a contact name");
        }
        return false;
    }
    if (theForm.contact_phone.value == "")
    {
        if(alerts == true) {
            alert ("You must supply a contact phone number");
        }
        return false;
    }
    if (theForm.contact_email.value == "")
    {
        if(alerts == true) {
            alert ("You must supply an email address");
        }
        return false;
    }
    return true;
}