function GetCode() {
	container=document.getElementById('target');
	if(container.style.display=="none") {
		var code = $f().getEmbedCode();
		container.innerHTML=code;
		container.style.display="";
		} else {
		container.style.display="none";
		}
    }

function MakePlayer() {
	$f("player", "/flowplayer/flowplayer-3.1.3.swf",{
			plugins: {            // load one or more plugins 
				controls: {            // load the controls plugin 
						url: '/flowplayer/flowplayer.controls-3.1.3.swf',    // always: where to find the Flash object 
					playlist: false,                // now the custom options of the Flash object 
					backgroundColor: '#aedaff',
					tooltips: {                // this plugin object exposes a 'tooltips' object 
						buttons: true, 
						fullscreen: 'Во всю харю',
						fullscreenExit: 'Втянуть щеки',
						play: 'зырить',
						pause: 'стой',
						previous: 'туда',
						next: 'сюда',
						mute: 'заткнись',
						unmute: 'разоткнись'
						} 
					}
			}
		});
	$f().embed();
	}


