function flashEmbed(id, file, width, height)
{
	var _flash = "" +
		"<object " + "\r\n" +
		"	id='" + id + "' " + "\r\n" +
		"	codeBase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"" + "\r\n" +
		"	height='" + height + "' " + "\r\n" +
		"	width='" + width + "' " + "\r\n" +
		"	classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"" + "\r\n" +
		">" + "\r\n" +
		"	<param name=\"movie\" value='" + file + "'>" + "\r\n" +
		"	<param name=\"quality\" value=\"high\">" + "\r\n" +
		"	<param name=\"bgcolor\" value=\"#ffffff\">" + "\r\n" +
		"	<param name=\"AllowScriptAccess\" value=\"always\" />" + "\r\n" +
		"	<embed " + "\r\n" +
		"		src='" + file + "' " + "\r\n" +
		"		quality=\"high\" " + "\r\n" +
		"		bgcolor=\"#ffffff\" " + "\r\n" +
		"		width='" + width + "' " + "\r\n" +
		"		height='" + height + "' " + "\r\n" +
		"		swliveconnect=\"true\" " + "\r\n" +
		"		AllowScriptAccess=\"always\" " + "\r\n" +
		"		id='" + id + "' " + "\r\n" +
		"		name='" + id + "' " + "\r\n" +
		"		type=\"application/x-shockwave-flash\"" + "\r\n" +
		"		pluginspage=\"http://www.macromedia.com/go/getflashplayer\">" + "\r\n" +
		"	</embed>" + "\r\n" +
		"</object>" + "\r\n";
	
	document.write(_flash);	
}