////////////////////////////////////////////////////////////////////////////////////////////
//
//  Due to a patent claim against Microsoft, updated IE6 pops dialog for manual loading 
//  of inline media applets. The workaround is to inject the HTML vi JavaScript.
//

function loadFluorometerVideo() {

    var html = "";

    html += '<div class="floatimgtopleft" style="margin-top:10px;">';
    html += '<object type="application/x-shockwave-flash" data="FlowPlayer.swf" width="320" height="240" id="FlowPlayer">';
    html += '<param name="allowScriptAccess" value="sameDomain" />';
    html += '<param name="movie" value="FlowPlayer.swf" />';
    html += '<param name="quality" value="high" />';
    html += '<param name="scale" value="noScale" />';
    html += '<param name="wmode" value="transparent" />';
    html += '<param name="flashvars" value="config={videoFile: \'fluorometer.flv\',hideControls:true}" />';
    html += '</object>';
    html += '</div>';

    document.getElementById("video").innerHTML = html;
}
