You can do this using javascript
in the page_load of the parent aspx add the following line

Code:
btnSubmit.Attributes.Add("onClick", "fnStartNewWin()");
In the fnStartNewWin routine you can then add the following line

Code:
 window.open(path to the new aspx)