/* * ezeprox.pac * This one will use the same cache for http, ftp and gopher * by ieFaF 10 Dec 98 */ function FindProxyForURL(url, host) { if (url.substring(0, 5) == "http:" || url.substring(0, 7) == "gopher:" || url.substring(0, 4) == "ftp:") return "PROXY proxy_u_like1.com:3128; PROXY proxy_u_like2.com:8080"; }