/*function playvideo_live(_s, _w, _h) {
    var swf_width = _w;
    var swf_height = _h;	
	var _liveServer = _s;   //可以为空，默认值
    var curRul = "http://live.lawtv.com.cn";
   document.writeln('<embed src="'+curRul+'/js/live.swf" type="application/x-shockwave-flash" menu="false" allowscriptaccess="always" movie="'+_liveServer+'" allowfullscreen="true" width="'+swf_width+'" height="'+swf_height+'" flashvars="src='+_liveServer+'&controlBarMode=docked&&streamType=live&playButtonOverlay=true&autoPlay=true&scaleMode=stretch&expandedBufferTime=5&minContinuousPlaybackTime=8"></embed>');
}*/

/**jw 视频直播播放器**/
function playvideo_live(_s,_n, _w, _h){
	var swf_width = _w;
    var swf_height = _h;
	var _liveNode = _n;
	var _liveRoom = "rtmp://"+_s+"/live/";
	var curRul = "http://live.lawtv.com.cn";  //当前服务器的路径
    document.writeln("<embed");
    document.writeln("type=\"application\/x-shockwave-flash\"");
    document.writeln("id=\"player2\"");
    document.writeln("name=\"player2\"");
    document.writeln("src=\""+curRul+"\/js\/jwplayer.swf\" ");
    document.writeln("width=\""+swf_width+"\" ");
    document.writeln("height=\""+swf_height+"\"");
    document.writeln("allowscriptaccess=\"always\" ");
    document.writeln("allowfullscreen=\"true\"");
    document.writeln("flashvars=\"file="+_liveNode+"&streamer="+_liveRoom+"&provider=rtmp&autostart=true&image=\/images/loading.jpg\" ");
    document.writeln("\/>");
}

/**视频点播播放器**/
function playvideo_vod(_xml, w, h) {
    var swf_width = w;
    var swf_height = h;
    var curRul = "http://live.lawtv.com.cn";  //当前服务器路径
	var lawstr_file = curRul + "/playlist/"+_xml;
    document.write('<object id="tvplayer" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="' + swf_width + '" height="' + swf_height + '">');
    document.write('<param name="movie" value="'+curRul+'/js/player.swf?Math.random()"><param name="quality" value="high">');
    document.write('<param name="menu" value="false"><param name="allowFullScreen" value="true" /><param name="wmode" value="Transparent" />');
    document.write('<param name="FlashVars" value="xml=' + lawstr_file  + '">');
    document.write('<embed src="'+curRul+'/js/player.swf?Math.random()"  name="tvplayer" wmode="Transparent" allowFullScreen="true" FlashVars="xml=' + lawstr_file  + '" menu="false" quality="high" width="' + swf_width + '" height="' + swf_height + '" type="application/x-shockwave-flash" pluginspage="http:\/\/www.macromedia.com/go/getflashplayer" />');
    document.write('</object>');
}

/***WMV方式直播播放器****/

function showSLPlayer(url,_w,_h){
	var __url = url; 
	document.write('<object id="MediaPlayer1" width="'+_w+'" height="'+_h+'" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112" align="baseline" border="0" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"><param name="URL" value="' + __url + '"><param name="autoStart" value="true"><param name="invokeURLs" value="false"><param name="playCount" value="100"><param name="defaultFrame" value="datawindow"><param name="fullScreen" value="0"><embed src="' + __url + '" align="baseline" border="0" width="'+_w+'" height="'+_h+'" type="application/x-mplayer2"pluginspage="" name="MediaPlayer1" showcontrols="1" showpositioncontrols="0" showaudiocontrols="1" showtracker="1" showdisplay="0" showstatusbar="1" autosize="0" showgotobar="0" showcaptioning="0" autostart="1" autorewind="0" animationatstart="0" transparentatstart="0" allowscan="1" enablecontextmenu="1" clicktoplay="0" defaultframe="datawindow" invokeurls="0" fullScreen="0"></embed></object>');
}
