function on_init_document ()
{
    var edtelnr = document.getElementById ('telefoonnummer');
    if (edtelnr)
    {
        if (edtelnr.value.length == 0)
            edtelnr.focus ();
        else
        {
            var edpassword = document.getElementById ('password');
            if (edpassword)
                edpassword.focus ();
            
        }
    }
}

window.onload = on_init_document;
