Using the alert is just showing the AddArticleForm that you initiated earlier.
So perhaps in the AddArticleForm's hide event, you could write some code to clear the boxes.
Alternatively instead of initiating the AddArticleForm inside your main form and then showing this form in an alert…
You could do
alert(AddArticleForm(), buttons=[])
This way the AddArticleForm is initiated inside the alert and when the alert is closed the form is closed and a new form will load each time the alert is triggered.