function openVideo(videoSource,width,height)
{
	if(videoSource)
	{
		openString = 'fileadmin/flash/player/flvplayer.swf?';
		if(height && width)
		{
			openString += 'width='+width;
			openString += '&height='+height;
			openString += '&';
		}
		openString += 'flashvars=videoSource='+videoSource;
		$.prettyPhoto.open(openString);
	}
}

function openSWF(swfSource,width,height,flashvars)
{
	if(swfSource)
	{
		openString = swfSource+'?';
		if(height && width)
		{
			openString += 'width='+width;
			openString += '&height='+height;
			openString += '&';
		}
		if(flashvars)
		{
			openString += 'flashvars='+flashvars;
		}
		
		
		$.prettyPhoto.open(openString);
	}
}
