﻿var flowPlayer1;
function init() {
    flowPlayer1 = document.getElementById("FlowPlayer");
}

function setFlowPlayerConfig() {
	flowPlayer1.setConfig(fpConf);
}

function clipSelected(clipIndex) {
    init();    
	flowPlayer1.ToClip(clipIndex);
	flowPlayer1.DoPlay();
}

