function addFlash(fWidth, fHeight, fText)
{
	html =  '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="' + fWidth + '" height="' + fHeight + '" id="hTitle' + fWidth + '">';
	html += '<param name="movie" value="layout/h1_' + fWidth + '.swf" />';
	html += '<param name="quality" value="high" />';
	html += '<param name="bgcolor" value="#FFFFFF" />';
	html += '<param name="wmode" value="transparent" />';
	html += '<param name="flashvars" value="&h1=' + fText + '&" />';
	html += '<embed src="layout/h1_' + fWidth + '.swf" quality="high" bgcolor="#FFFFFF" wmode="transparent" flashvars="&h1=' + fText + '&" width="' + fWidth + '" height="' + fHeight + '" name="hTitle' + fWidth + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
	html += '</object>';

	return html;
};
