function sw_prep(file_path, width, height, bg_color) {
	document.write('\<object classid="clsid:166B1BCA-3F9C-11CF-8075-444553540000"');
	document.write(' codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
	document.write(' width="'+width+'" height="'+height+'"\>');
	document.write('\<param name="src" value="'+file_path+'"\>');
	document.write('\<param name="swStretchStyle" value="fill"\>');
	document.write('\<param name="sw1" value="ie"\>');
	document.write('\<param name="swRemote" value="');
	document.write("swSaveEnabled='false' swVolume='true' swRestart='false' swPausePlay='false' swFastForward='false' swContextMenu='false' \n");
	document.write('"\>\n');
	document.write('\<embed src="'+file_path+'"');
	document.write(' bgColor="'+bg_color+'"  width="'+width+'" height="'+height+'" swStretchStyle="fill" ');
	document.write('sw1="ie" ');
	document.write('swRemote="');
	document.write("swSaveEnabled='false' swVolume='true' swRestart='false' swPausePlay='false' swFastForward='false' swContextMenu='false' textfocus='onStart' ");
	document.write('"');
	document.write(' type="application/x-director" pluginspage="https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFull"\>');
	document.write('\</embed\>');
	document.write('\</object\>');
}

function fl_prep(file_path, width, height, quality) {
	document.write('\<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
	document.write(' width="'+width+'" height="'+height+'"\>');
	document.write('\<param name="movie" value="'+file_path+'"\>');
	document.write('\<param name="quality" value="'+quality+'"\>');
	document.write('\<embed src="'+file_path+'" quality="'+quality+'" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"\>');
	document.write('\</embed\>');
	document.write('\</object\>');
}
