function showPlayer(insert_to, width, height, autoplay, track) {
	var emel = document.createElement('EMBED');
	emel.src = track;
	emel.width = width;
	emel.height = height;
	emel.autoplay = autoplay;
	emel.ShowStatusBar = 1;
	document.getElementById(insert_to).appendChild(emel);
}