function writeFlash(flashName)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="150" height="370"  ID="example" align="left">\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="opaque" />\n');
	document.write('<param name="movie" value="images/');
	document.write(flashName);
	document.write('.swf" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<embed src="images/');
	document.write(flashName);
	document.write('.swf" id="example" name="example" swliveconnect="true" width="150" height="370" align="left" quality="high" bgcolor="#ffffff" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="opaque" menu="false" />\n');
	document.write('</object>\n');
}

