// this helps me place the flash objects inside my pages. this is a fix for Microsoft IE

// this is for the main homepage teaser.
function placeTeaser()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="460" height="280">');
	document.write('<param name="movie" value="images/homepage_teaser_new_2.swf">');
	document.write('<param name="quality" value="high">');
	document.write('<embed src="images/homepage_teaser_new_2.swf" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="460" height="280"></embed>');
	document.write('</object>');
}

// this is for the sample app or online demo.
function placeDemo()
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="800" height="600" title="LTF Web Demo">');
	document.write('<param name="movie" value="images/classic_web_demo.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="images/classic_web_demo.swf" quality="high" pluginspage="https://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="600"></embed>');
	document.write('</object>');
}