You can also try this one here:
PHP Code:
<html>
<head>
<script type="text/JavaScript">
function ExitPage()
{
alert ('Before You Leave:\n\n Your messsage here. \n\nMore message text here\n\nMore text here\n\nMore text here');
getit()
}
function getit() {
askit = confirm("Leaving so soon? Why not stay a little longer!");
if (askit == true)
alert('Thanks');
else
if (askit == false)
alert("Visit again soon!");
}
</script>
</head>
<body onbeforeunload="ExitPage();">