var movie_flash_ver = 6;
var swf_file = '/mounting/weather/weather.swf';

function showSWF(timeofday,clouds,precip,animation) {
	var swf_w = animation ? '130' : '65';
	var swf_h = animation ? '68'  : '34';
	clouds++;
	//animation=1;
	
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,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');
}
