function createCorbinaPlayer(cvid, width, height) {

	//-----------------------------------------------------------------------
	var deployRoot = "http://www.corbina.tv/flashplayer/gmp/";

	//-----------------------------------------------------------------------
	var attributes = { };
	
	
	
	//-----------------------------------------------------------------------
	var flashvars = { 
		cvs:cvid,
		
		aplay:1,	//autoplay on
		screen:0,	//grow/shrink button hidden
		
		bufferTime:10,
		
		uilive:1,
				
		//link to go on logo/title click (usually same as cpage; if omitted defaults to value of cpage)
		logoclick:"http://www.beeline.ru/",
		
		skin:"skin-bee.swf",
		
		//no plugins
		plugins: ""
	};
	
	
	//-----------------------------------------------------------------------
	var params = {
		allowFullScreen: true,
		quality:'high',
		align: 'middle',
		play: 'true',
		loop: 'true',
		scale: 'showall',
		wmode: 'window',
		devicefont: 'false',
		bgcolor: '#000000',
		name: 'player',
		menu: 'true',
		allowFullScreen: 'true',
		allowScriptAccess: 'always'	//'sameDomain'
		};
	
	
	//-----------------------------------------------------------------------
	
	swfobject.embedSWF(deployRoot + "player.swf", "player_corbina", width, height, "8.0.0", "expressInstall.swf", 
		flashvars, params, attributes);

}


