function showFlash(file_src, width, height)
	{
	flash_txt = '<object width="' + width + '" height="' + height + '" />';
	flash_txt += '<param name="movie" value="files/' + file_src + '" />';
	flash_txt += '<param name="quality" value="high">';
	flash_txt += '<embed src="' + file_src + '" quality="high" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '">';
	flash_txt += '</embed>';
	flash_txt += '</object>';

	return flash_txt;
	}

