If all you want to do is re-run the Form.Load event after the pop-up form closes, do the following:
Change your code that opens the pop-up to:
DoCmd.OpenForm "Stuff", , , , , acDialog
Call Form_Load
Make sure to add any other parameters you already use in the OpenForm command, but make sure you...