window.onbeforeunload = function()
{
    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 = "欢迎您免费注册成为爱屋白领交友网会员，找到心仪的TA"; 
    }
}

