function writeFlash(name, file, width, height, align, scriptaccess, quality, scale, bgcolor){
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11CF-96B8-444553540000" ');
	document.writeln('	codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
	document.writeln('	width="'+width+'" height="'+height+'" ');
	document.writeln('	id="'+name+'" align="middle">');
	document.writeln('	<param name="allowScriptAccess" value="'+scriptaccess+'" />');
	document.writeln('	<param name="movie" value="'+file+'" />');
	document.writeln('	<param name="quality" value="'+quality+'" />');
	document.writeln('	<param name="scale" value="'+scale+'" />');
	document.writeln('	<param name="bgcolor" value="'+bgcolor+'" />');
	document.writeln('	<embed src="'+file+'" quality="'+quality+'" ');
	document.writeln('		scale="'+scale+'" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" ');
	document.writeln('		name="'+name+'" align="'+align+'" allowScriptAccess="'+scriptaccess+'" ');
	document.writeln('		type="application/x-shockwave-flash" ');
	document.writeln('		pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.writeln('</object>');
}


