You are on page 1of 1

function FindProxyForURL(url,host) {

if (isPlainHostName(host)) {
return "DIRECT"
}
if( shExpMatch( host, "www.ala.org")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.searchbank.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.gale.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.galenet.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.galegroup.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "198.112.169.*")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.umi.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.sirs.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*grolier.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.alldatapro.com")) return "PROXY 64.26.67.132:8080";
if( shExpMatch( host, "*.2facts.com")) return "PROXY 64.26.67.132:8080";
return "DIRECT";
}

You might also like