function FindProxyForURL(url, host)
{
	if ( isPlainHostName(host) )
		return "DIRECT";
	else
	        return "PROXY 192.168.1.2:8080";
}
