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'";
}

function ShowHideEmailForm()
{
	dpa = document.getElementById('mzemail_a9901_canemail');
	
	ctrl = document.getElementById('emailformat');
	if(dpa.checked)
		ctrl.style.display = 'block';
	else
		ctrl.style.display = 'none';

}
