function FindProxyForURL(url, host) {
	if (host == "software.dreamspark.com") {
		return "PROXY localhost:8080";
	} else {
		return "DIRECT";
	}
}