function writeFlash(swf_url, width, height, version, menu, loop)
{
	document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + version + ',0,0,0" ');
	document.write(' WIDTH=' + width + ' HEIGHT=' + height + '>');
	document.write('<PARAM NAME=movie VALUE="'+ swf_url +'"><PARAM NAME=menu VALUE="'+ menu +'"><PARAM NAME=loop VALUE="'+ loop +'"><PARAM NAME=quality VALUE=high>'); 
	document.write('<EMBED src="' + swf_url + '" loop=true wmode=opaque quality=high');
	document.write(' swLiveConnect=FALSE WIDTH=' + width + ' HEIGHT=' + height);
	document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer">');
	document.write('</NOEMBED>');
	document.write('</EMBED>');
	document.write('</OBJECT>');
}