function FindProxyForURL (url, host) { // user variables // please change these port numbers for your own use nProxy = "plaguesplace.dyndns.org:10234; "; //normal (non-anon) proxy aProxy = "plaguesplace.dyndns.org:10235; "; //anon proxy if ( shExpMatch(url,"*.egroups.com/*") ) { str = "PROXY " + nProxy; // use normal proxy (cookies) // alert( str ); return str; }; str = "PROXY " + aProxy; // use anon proxy normally // alert( str ); return str; };