function schnoozleRedirect() {
    // redirect from www.schnozzle.org/~howard/* to frank.harvard.edu/~howard/*.
    // schnoozle.org is Jono's web page.
    var URL = document.location.href;
    URL_split = URL.split('/');
    if (URL_split[2] == 'www.schnozzle.org' || 
        URL_split[2] == 'schnozzle.org') {
        var URL_new = "http://frank.harvard.edu/~howard"
        for (i=4; i<URL_split.length; i++) {
            URL_new += "/" + URL_split[i];
        }
        document.location.href = URL_new;
    }
}

schnoozleRedirect();
