function swfPlayer(szFilePath, dwWidth, dwHeight) 
{
	var flashText = '';
	var szFlashname = 'flash' + Math.random();
	szFlashname = szFlashname.replace('.', '');
	
	flashText += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" width=\"" + dwWidth + "\" height=\"" + dwHeight + "\" id=\"" + szFlashname + "\">";
	flashText += "<param name=\"movie\" value=\"" + szFilePath + "\"/>";
	flashText += "<param name=\"quality\" value=\"high\"/>";
	flashText += "<param name=\"wmode\" value=\"transparent\" />";
	flashText += "<embed src=\"" + szFilePath + "\" wmode=\"transparent\" bgcolor=\"#ffffff\" quality=\"high\" width=\"" + dwWidth + "\" height=\"" + dwHeight + "\" name=\"" + szFlashname + "\" align=\"\" type=\"application/x-shockwave-flash\" pluginspace=\"https://www.macromedia.com/go/getflashplayer\">";
	flashText += "</embed>";
	flashText += "</object>";
	
	document.write(flashText);
}
