function sfv(f) {
    f.ddl_title.mandatory = true;
    f.ddl_title.label = "'Title'";
    f.ctl00_CPHP_txt_forename.mandatory = true;
    f.ctl00_CPHP_txt_forename.minlen = 2;
    f.ctl00_CPHP_txt_forename.label = "'Forename'";
    f.ctl00_CPHP_txt_surname.mandatory = true;
    f.ctl00_CPHP_txt_surname.label = "'Surname'";
    f.ctl00_CPHP_txt_user_email.mandatory = true;
    f.ctl00_CPHP_txt_user_email.label = "'Email'";
    f.ctl00_CPHP_txt_user_email.email = true;
    f.ctl00_CPHP_txt_user_email_repeat.mandatory = true;
    f.ctl00_CPHP_txt_user_email_repeat.label = "'Confirm your email'";
    f.ctl00_CPHP_txt_user_email_repeat.email = true;
    f.ctl00_CPHP_txt_user_email_repeat.repeat = true;
    f.ctl00_CPHP_txt_user_password.mandatory = true;
    f.ctl00_CPHP_txt_user_password.label = "'Password'";
    f.ctl00_CPHP_txt_user_password_repeat.mandatory = true;
    f.ctl00_CPHP_txt_user_password_repeat.repeat = true;
    f.ctl00_CPHP_txt_user_password_repeat.label = "'Confirm your password'";

    f.Master_dms07_jobfun.mandatory = true;
    f.Master_dms07_jobfun.label = "'What is your job function?'";

//    if (document.getElementById('ctl00_CPHP_trReqHumanAnswer') != null && document.getElementById('ctl00_CPHP_txt_inHumanQ').value.toLowerCase() != "green") {
//        document.getElementById('ctl00_CPHP_txt_inHumanQ').value = '';
//        f.ctl00_CPHP_txt_inHumanQ.mandatory = true;
//        f.ctl00_CPHP_txt_inHumanQ.label = "'Which of the following colours is grass?'";

//    }

}

function ShowHideEmailForm() {
    dpa = document.getElementById('mzemail_a9901_canemail');

    ctrl = document.getElementById('emailformat');
    if (dpa.checked)
        ctrl.style.display = 'block';
    else
        ctrl.style.display = 'none';

}
