/*
 * File: everypeople.js
 * Description: JavaScript used on many pages      
 *      Author: M D Green                              
 *              9 January 2003
 *       Email: Mike.Green@saesolved.com
 *         Web: http://www.saesolved.com/
 */
        if (this_querystring == null) this_querystring = '';
        setTimeout ("changePage(this_subdomain, this_querystring)", 3000);

        function changePage(this_sub, this_qrystr) {
            if (this_sub == null || this_sub == '') this_sub = 'www';
            var sourceHREF = 'everypeople.net';
            var revertHREF = 'http://' + this_sub + '.everypeople.net' + this_qrystr;
            if (window.location.href.indexOf(sourceHREF) == -1 || self.top.popupWindow == null) {
                self.top.location = revertHREF;
            }
        }
