<script language=javascript> <!--
function closing() { alert("欢迎再来"); window.close } /--> </script>
<script> function window.onbeforeunload(){ with(window.event)if(clientY<0&&clientX>document.body.clientWidth||altKey)closing() } </script>
<script language="javascript"> function window.onbeforeunload() { var n= window.event.screenX -window.screenLeft; var b= n> document.documentElement.scrollWidth-20; if(b && window.event.clientY < 0 || window.event.altKey){ window.event.returnValue="真的要离开吗?"; //确定要退出本页吗? } } </script>