﻿var _width=400;/*宽度*/
var _height=326;/*高度*/
var _isAutoPlay="false";/*是否自动播放true*/
var _src="";/*视频地址*/

var outstr='<embed name="movie_player" width="_width" height="_height" id="movie_player" pluginspage="http://www.macromedia.com/go/getflashplayer" src="_src" type="application/x-shockwave-flash" flashvars="isShowRelatedVideo=false&showAd=0&show_pre=1&show_next=1&isAutoPlay=_isAutoPlay&isDebug=false&UserID=&winType=interior&playMovie=true&MMControl=false&MMout=false&RecordCode=1001,1002,1003,1004,1005,1006,2001,3001,3002,3003,3004,3005,3007,3008,9999" allowfullscreen="true" quality="high" wmode="transparent" bgcolor="#FFFFFF" />';
outstr=outstr.replace("_width",_width).replace("_height",_height).replace("_isAutoPlay",_isAutoPlay);

document.write(outstr.replace("_src",_src));

function ChageMovie(_thissrc){
    document.getElementById("movie_player").parentNode.innerHTML=outstr.replace("_src",_thissrc);
}
