// This JavaScript code passes parameters to a dynamic flash docuument and writes <object> and <embed> code back to XHTML.  Using a script method to write the XHTML avoids IE active content security context. 

function Teaser() 
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="600" height="250" id="Flash" align="middle">\n');
    document.write('<param name="movie" value="TeaserFlash.swf" />\n');
    document.write('<param name="quality" value="high" />\n');
	document.write('<param name="wmode" value="transparent" />\n');
	document.write('<param name="BASE" value="." />\n');
	document.write('<param name="LOOP" value="false" />\n');
	document.write('<embed src="TeaserFlash.swf" wmode="transparent" base="." loop="False" quality="high" bgcolor="#ffffff" width="600" height="250" name="Flash" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>\n');
	document.write('</object>\n');
}

