	function EmbedFlash(SWFPathFile, Width, Height) {

	    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
	    + ' width="' + Width + '" height="' + Height + '"'
	    + ' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
	    + ' <param name="movie" value="' + SWFPathFile + '" />'
		+ ' <param name="play" value="true" />'
		+ ' <param name="allowFullScreen" value="true" />'
		+ ' <param name="loop" value="false" />'
		+ ' <param name="quality" value="high" />'
		+ ' <param name="bgcolor" value="#F6F1D3" />'
	    + ' <embed src="' + SWFPathFile + '" quality="high" bgcolor="#F6F1D3" '
	    + ' width="' + Width + '" height="' + Height + '" name="FlashVideo" align="middle"'
	    + ' play="true" allowFullScreen="true"'
	    + ' loop="false"'
	    + ' quality="high"'
	    + ' allowScriptAccess="sameDomain"'
	    + ' type="application/x-shockwave-flash"'
	    + ' pluginspage="http://www.macromedia.com/go/getflashplayer">'
	    + ' <\/embed>'
	    + ' <\/object>';

	document.write(oeTags);   // embed the flash movie
	document.close();
  }
