function loadWeather() {
	if(!document.getElementById('weatherBox')) {
		return;
	}

	var http = false;

	if(navigator.appName == "Microsoft Internet Explorer") {
	  http = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
	  http = new XMLHttpRequest();
	}
	
	http.open("GET", "/weather.php");
	
	http.onreadystatechange=function() {
    if(http.readyState == 4) {
	    document.getElementById('weatherBox').innerHTML = http.responseText;
	  }
	}
	http.send(null);
}

