<script>
window.onbeforeunload = function(e)
{
var msg = 'Зачем уходить, оставайся у нас классно!';
if(typeof e == "undefined")
e = window.event;
if(e)
e.returnValue = msg;
return msg;
}
</script>