function setEmailCheck(form_o)
{
	if (form_o.email1.value == form_o.email2.value)
	{
		return getValidation(form_o);
	}
	else
	{
		window.alert('Controleer email adres');
		return false;
	}
}