function player(files,swf_width,swf_height,auto,div_name){//

	var texts	= 'welcome to http://www.cgbegin.cn';
	if(div_name==""){
		div_name="video_right";
	}
	if(auto)	auto	= 'IsAutoPlay=1&';else auto	= '';
	var html	= '<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 +'">';
	html	+= '<param name="movie" value="upload/flvplayer.swf"><param name="quality" value="high">';
	html	+= '<param name="menu" value="false"><param name="allowFullScreen" value="true" />';
	html	+= '<param name="FlashVars" value="'+auto+'vcastr_file='+files+'&vcastr_title='+texts+'">';
	html	+= '<embed src="upload/flvplayer.swf" allowFullScreen="true" FlashVars="'+auto+'vcastr_file='+files+'&vcastr_title='+texts+'" menu="false" quality="high" width="'+ swf_width +'" height="'+ swf_height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	html	+= '</object>'; 
	document.getElementById(div_name).innerHTML	= html;
}