var movie_flash_ver = 6;
var swf_file = '/i/weather.swf';
function PrintWeatherState(timeofday,clouds,precip,animation) {
	if(animation) {
		var swf_w = '130';
		var swf_h = '68';
	}
	else {
		var swf_w = '65';
		var swf_h = '34';
	}
	clouds++; // For swf format
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+swf_w+'" height="'+swf_h+'">\n');
	document.write('<param name="flashvars" value="timeofday='+timeofday+'&clouds='+clouds+'&precip='+precip+'&animation='+animation+'">\n');
	document.write('<param name="quality" value="high">\n');
	document.write('<param name="movie" value="'+swf_file+'">\n');
	document.write('<embed src="'+swf_file+'" quality="high" width="'+swf_w+'" height="'+swf_h+'" flashvars="timeofday='+timeofday+'&clouds='+clouds+'&precip='+precip+'&animation='+animation+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
	document.write('</object>\n');
}