hi.
I want to open a new window after closing this window (form.php).
I use this code:
<body onunload="open_new_window()" >
print ("<script language=\"JavaScript\" type=\"text/javascript\">
function open_new_window()
{
window.open (\"$filename\") ;
}
</script> ") ;
but in ( form.php ) there is a form and when i submit the form
explorer think i close the window.
what sould i do?