function checkRegisterForm(form)
{
	new Ajax.Request(form.action,
        {
            method: 'post',
            postBody: Form.serialize(form),
            onSuccess:
                function(transport)
                {
                    var json = transport.responseText.evalJSON();
                    if (json.status == 'false')
                    {
                        ajaxFormErrorHandling(json);
                    }
                    else
                    {
                        // verstuur alle afbeeldingen naar de server...
                        formHandling(json);
                    }
                }
        });

    return false;
}