function flvP(dot1,dot2,file){
	var file_all=file.split("|");
	
	function show(dot01,file){
		var dot1_=dot01+"1";
		var str='';
		//for youtube
		var youtube_videoembed='<object width="317" height="216"><param name="movie" value="'+file.split("#")[0]+'?rel=1&color1=0x2b405b&color2=0x6b8ab6&border=1&fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="'+file.split("#")[0]+'?rel=1&color1=0x2b405b&color2=0x6b8ab6&border=1&fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" width="317" height="216" allowfullscreen="true"></embed></object>';
		//for tudou
		var tudou_videoembed='<object width="317" height="216"><param name="movie" value="'+file.split("#")[0]+'"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><param name="wmode" value="opaque"></param><embed src="'+file.split("#")[0]+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" width="317" height="216"></embed></object>';
		if(file.split("#")[3] == 'tudou'){
		str='<h3>'+file.split("#")[2]+'</h3>'+tudou_videoembed;
		}else{
		str='<h3>'+file.split("#")[2]+'</h3>'+youtube_videoembed;
		}
		$('#videoplay').html(str);
	};
	show(dot1,file_all[0]);
};
