Forum Moderators: open
window.open (sURL & "?p=" & document.frmProfile.sPage.value)
After the request, the popup submits to itself and says "OK",and the user closes the popup.
Is they some way to force the main page to refresh/f5 when this happens.
onClick="return myPopupRoutine('example.html','thispage.html');
where myPopupRoutine contains the window.open commands, etc.
Then you do something this in the pop-up window:
window.opener.location=url;
window.close();
... where url is the original url from the window.opener. You can also use reload() but if the original window is results from a submitted form you will get that re-submit message from the browser which is kinda messy.
If you can't gather it from this idea I have some code here I can drop in, but have to hunt it down. :-)