function playVideos(files,width,height,texts){

if(files=='../upload/news/')
{
document.getElementById("flv").innerHTML="暂无视频...";
return;
}

var str="";
var swf_width=width;
var swf_height=height;
var texts=texts;
var files=files;
var config='0:自动播放|0:连续播放|100:默认音量|1:控制栏位置|1:控制栏显示|0x000033:主体颜色|60:主体透明度|0x66ff00:光晕颜色|0xffffff:图标颜色|0xffffff:文字颜色|:logo文字|:logo地址|:结束swf地址|1:是否显示时间'

//var config='0:自动播放|0:连续播放|0:默认音量|0:控制栏位置|2:控制栏显示|0x000033:主体颜色|60:主体透明度|0x66ff00:光晕颜色|0xffffff:图标颜色|0xffffff:文字颜色|:logo文字|:logo地址|:结束swf地址|1:是否显示时间'

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="'+ swf_width +'" height="'+ swf_height +'">');
str+=('<param name="movie" value="vcastr2.swf" allowFullScreen="true" ><param name="quality" value="high">');
str+=('<param name="menu" value="true"><param name=wmode value="opaque">');
str+=('<param name="FlashVars" value="vcastr_file='+files+'&vcastr_title='+texts+'&vcastr_config='+config+'">');
str+=('<embed src="vcastr2.swf" wmode="opaque" FlashVars="vcastr_file='+files+'&vcastr_title='+texts+'&vcastr_config='+config+'" menu="false" quality="high" width="'+ swf_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>');

document.getElementById("flv").innerHTML=str;
}



function ShowPlay(CurrentID,Count,ID)
{
	for(var i=1;i<=Count;i++)
	{
		if (document.getElementById(ID+i).style.display=='')
		{
	document.getElementById(ID+i).style.display='none';
		}
	}
	document.getElementById(ID+CurrentID).style.display='';
}

