function LoadWeather()
{
	var now = new Date();
	var time = now.getTime();
	var url = "/weather/fetch.php?t=" + time;
	var img = "<img src=\"" + url + "\" width='1' height='1' />";
	document.write( img );
}