var videoContainer;
function playInLightbox(isAudio, videoId, portalId, title, width, height)
{
	if (!videoContainer)
	{
		videoContainer = document.createElement("div");
		videoContainer.style.display = "none";
		videoContainer.id = "videoContainer";
		document.body.appendChild(videoContainer);
	}

	var movie = "";
	if (isAudio)
		movie = "mp3";
	else
		movie = "uvg";

	var swf = uvgPath + movie + ".swf?vId=" + videoId + "&portalId=" + portalId + "&baseUrl=" + uvgPath;
	var code = "<object allowFullScreen='True' allowScriptAccess='always' allowNetworking='all' width='" + width + "' height='" + height + "'><param name='movie' value='" + swf + "' /><param name='allowFullScreen' value='true' /><embed src='" + swf + "' type='application/x-shockwave-flash' allowFullScreen='True' allowScriptAccess='always' allowNetworking='all' width='" + width + "' height='" + height + "'></embed></object>";
	videoContainer.innerHTML = code;
	tb_show(title, "#TB_inline?height=" + height + "&width=" + width + "&inlineId=" + videoContainer.id, null);
}