<html><body><script>alert('You are no longer logged into AOL. Please log in again.');
var targetURL = 'http://webmail.aol.com/_cqr/PortalCookieCheck.aspx?site=sns.webmail.aol.com&siteState=ver%3a2%7cac%3aWS%7cat%3aSNS%7cld%3awebmail.aol.com%7cuv%3aAOL%7clc%3aen-us';

function FindMainWindow() {
        for (var w = window; true; w = w.parent) {
                if (w.GetMainWindow)
                        return w.GetMainWindow();
                if (w.parent == w)
                        break;
        }

        try {
                for (w = opener; w != null && !w.closed; w = w.opener)
                        if (w.GetMainWindow)
                                return w.GetMainWindow();
        } 
        catch (exc) {
                return null;
        }
        return null;
}

var mw = FindMainWindow();
if (mw && !mw.closed)
        mw.top.location = targetURL;
else {
        var w = window.open(targetURL, '', '', true);
        if ((w == null) && (window == top)) window.location = targetURL; 
}
</script></body></html>