function FindProxyForURL(url, host) { if (shExpMatch(host, "*.uoa.gr") || shExpMatch(host, "*.gunet.gr")) { return "DIRECT"; } else { return "PROXY proxy.uoa.gr:8080"; } }