function showSwf( swfPath, swfWidth, swfHeight, swfFlashVars)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('	codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + swfWidth + '" height="' + swfHeight + '" >');
	document.write('	<param name="movie" value="' + swfPath +'">');
	document.write('	<param name="quality" value="high">');
	document.write('	<embed src="' + swfPath + '" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + swfWidth + '" height="' + swfHeight + ' FlashVars=' + swfFlashVars + '"></embed>');
	document.write('</object>');
}

function showSwfTransparent( swfPath, swfWidth, swfHeight, swfFlashVars)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('	codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + swfWidth + '" height="' + swfHeight + '" >');
	document.write('	<param name="movie" value="' + swfPath +'">');
	document.write('	<param name="FlashVars" value="' + swfFlashVars + '>');
	document.write('	<param name="quality" value="high">');
	document.write('	<param name=wmode value=transparent>');
	document.write('	<embed src="' + swfPath + '" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + swfWidth + '" height="' + swfHeight + ' FlashVars=' + swfFlashVars + '"></embed>');
	document.write('</object>');
}