function EmbedWidget(sSrc, iWidth, iHeight)
{
	document.write('<object width="'+ iWidth +'" height="'+ iHeight +'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0">');
	document.write('<param name="movie" value="'+ sSrc +'" />');
	document.write('<param name="allowfullscreen" value="false" />');
    document.write('<param name="quality" value="high" />');
    document.write('<param name="wmode" value="transparent" />');
	document.write('<embed wmode="transparent" allowfullscreen="true" src="'+ sSrc +'" width="'+ iWidth +'" height="'+ iHeight +'"  type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}