Hi, in the below folder-structure I've got the following problem: a user links to Methode1 where he does his login with role:Voter. Methode1 contains only <dtml-var Methode3>. The below form in Methode3 calls Methode2 on submit. The problem: after submission of the form there is 2nd login-prompt for the already authentificated user. How can I get rid of that? All the Methods do have Manager-roles already. (I would like to cut them to Voter or Owner anyway) Can anybody help me with that? -- many thanks for your replies, Elena form-code: <form action="Methode2" method="post"> <input class="formButton" type="button" value="schließen" name="Fenster schließen" onclick="window.close()" /> <input class="formButton" type="button" value="zurück" name="zurück" onclick="history.back()" /> <input class="formButton" type="submit" name="submit" value="Methode2"> </form> folder-structure: FolderA | |_FolderB:viewPermission->roles: Manager&Voter | |_acl_users-Folder: ..... | |_DTML Methode1:proxy=Manager | |_DTML Methode2:proxy=Manager | |_DTML Methode3:proxy=Manager