function ShowFlash(strName, strText, strHeight, strWidth)
{
	document.write('<object height="' + strHeight + '" width="' + strWidth + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" title="' + strText + '" viewastext>\n');
	document.write('<param name="Movie" value="' + strName + '">\n');
	document.write('<param name="Src" value="' + strName + '">\n');
	document.write('<param name="Play" value="-1">\n');
	document.write('<param name="loop" value="true">\n');
	document.write('<param name="Quality" value="High">\n');
	document.write('<param name="SeamlessTabbing" value="1">\n');
	document.write('<embed src="' + strName + '" width="' + strWidth + '" height="' + strHeight + '" loop="true" quality="high" type="application/x-shockwave-flash"> </embed>\n');
	document.write('</object>\n');
}
