// JavaScript to overcome flash/activeX problem
//based on info at http://www.adobe.com/devnet/activecontent/articles/devletter.html
function RunFlashFix()
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="294" height="166">\n');
    document.write('<param name="movie" value="installations/images/feature_slideshow.swf"/>\n');
    document.write('</object>\n');
}