function showLCIPlayer(id, width, height, video, preview) {
	var flashvars = "file=" + encodeURIComponent(video);
	if(preview) flashvars += "&image=" + encodeURIComponent(preview);
	var el = document.getElementById(id);
	var html = '<object type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" data="http://www.lcipaper.com/videos/player.swf">' +
		'<param name="movie" value="http://www.lcipaper.com/videos/player.swf">' +
		'<param name="allowfullscreen" value="true">' +
		'<param name="allowscriptaccess" value="always">' +
		'<param name="FlashVars" value="' + flashvars + '">' +
	'</object>';
	
	el.innerHTML = '<div style="width:' + width + '">' + html + '<div>Embed: <input type="text" id="' + id + 'input" style="width:' + (width - 51) + 'px;color:gray;"/></div></div>';
	document.getElementById(id + 'input').value = html;
}