﻿/********************/
/* Flash parameters */
/********************/
var swfInstallPath = "../../swf/expressinstall.swf";
var gameFlashParams =
{
	allowScriptAccess: "always",
	wmode: "opaque"
};
var flashParams =
{
	allowScriptAccess: "always",
	wmode: "transparent"
};
var fullScreenFlashParams =
{
	allowFullScreen: "true",
	allowScriptAccess: "always",
	wmode:"transparent"
};
/********************/
/*   Video player   */
/********************/
var videoArray = null;

function playVideo(id, isOut)
{
	if (videoArray)
	{
		var video = null;
		for (var i = 0; i < videoArray.length; i++)
		{
			if (videoArray[i].id == id)
			{
				video = videoArray[i];
				break;
			}
		}
		if (video)
		{			
			swfobject.embedSWF(
				video.src.replace(/&apostrophe;/, "'"),
				"videoContent",
				"570",
				"340",
				"9.0.47.0",
				swfInstallPath,
				{},
				fullScreenFlashParams);
		}
	}
}
function OpenVideoPlayer(id)
{
	playVideo(id, true);
}
function OpenVideoGallery(id)
{
	videoArray = videos;
	currentVideoId = id;
	OpenVideoPlayer(id);
}