﻿//插入FLASH
//wmode:Window | Opaque | Transparent   (默认为wmode)
function flashInsert(elmID, url, width, height, wmode)
{
    if (!document.getElementById(elmID)) return;
    var str = '';
    str += '<object width="'+ width +'" height="'+ height +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0">';
    str += '<param name="movie" value="'+ url +'">';
    str += '<param name="wmode" value="' + wmode + '">';
    str += '<param name="quality" value="autohigh">';
    str += '<embed width="'+ width +'" height="'+ height +'" src="'+ url +'" quality="autohigh" wmode="' + wmode + '" type="application/x-shockwave-flash" plugspace="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>';
    str += '</object>';
    document.getElementById(elmID).innerHTML = str;
}

function insertFlash(elmID, url, width, height, wmode)
{
    if (!document.getElementById(elmID)) return;
    var str = '';
    str += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ width +'" height="'+ height +'">';
    str += '<param name="movie" value="swf/video.swf">';
    str += '<param name="quality" value="high">';
    str += '<param name="menu" value="false">';
    str += '<param name="allowFullScreen" value="true">';
    str += '<param name="wmode" value="' + wmode + '">';
    str += '<param name="FlashVars" value="vcastr_file='+url+'" />';
    str += '<embed src="swf/video.swf" allowFullScreen="true" FlashVars="vcastr_file='+url+'" menu="false" quality="high" wmode="' + wmode + '" width="'+ width +'" height="'+ height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
    str += '</object>';
    document.getElementById(elmID).innerHTML = str;
}