How to stop window unloading?

javascript

Solution

From here http://bytes.com/topic/javascript/insights/825556-using-onbeforeunload-javascript-event

<script type="text/javascript">
     window.onbeforeunload = function(){ return 'Your Returned String Goes Here';}
</script>

Problem

when user click a another link or refresh the page, the window will unload, how to prevent/confirm it?

Original source