function initFlashPlyr(nWidth,nHeight,strSrc,strBgColor,strLang,fLang)
{
	var nVer=5;
	var nRev=0;
	var strObjParam = '';
	var strEbdParam = '';
	if (fLang)
	{
		nVer=7;
		nRev=19;
		strObjParam = '<PARAM NAME="FlashVars" VALUE="language=' + strLang + '"/><PARAM NAME=bgcolor VALUE=' + strBgColor + '>';
		strEbdParam = 'FlashVars="language=' + strLang + '"';
	}
	strHtml = '<OBJECT id="movie" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+ nVer +',0,'+ nRev +',0" WIDTH="' + nWidth + '" HEIGHT="' + nHeight + '"><PARAM NAME="movie" VALUE="' + strSrc + '"/><PARAM NAME="quality" VALUE="high"/>';
	strHtml += '<param name="AllowScriptAccess" value="always"><PARAM NAME="wmode" VALUE="transparent"><PARAM NAME="bgcolor" VALUE="' + strBgColor + '"/>' + strObjParam + '<EMBED name="movie" AllowScriptAccess="always" src="' + strSrc + '" ' + strEbdParam + ' quality="high" ';
	strHtml += 'wmode="transparent" bgcolor="' + strBgColor + '"  WIDTH="' + nWidth + '" HEIGHT="' + nHeight + '" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" /></object>';
	document.write(strHtml);
}