hello.
I want to writte a script that open a page when the user close the window.
I've written
<script language="javascript">
if(window.closed)
window.open("exit.html","exit","titlebar=yes");
</script>
and it doesn't work.
When i close the window with"x" nothing hapen.
Please help me.