In your popup use a standard button rather than a submit button and add a handler to its onclick attribute:
Code:
<input onclick="handleSubmit();" type="input" value="Submit">
Your handleSubmit function is:
Code:
function handleSubmit()
{
document.forms[0].submit();
self.opener.location.reload();
self.close();
}
--
Joe (
Microsoft MVP - XML)