// P= /prefix/(start|pause|resume)/File(jpg|mp4)
var dataContainerFlowPlayerLogged=new Array();
var dataContainerFlowPlayerLogUrlByFile=new Array();
function dataContainerFlowPlayerLog(P)
{
  var elements=P.split('/');
  var Prefix=elements[1];
  var Action=elements[2];
  elements.splice(0, 3);
  var File=elements.join("/");
  if (Action=="start")
    {
      //alert("Prefix="+Prefix);
      //alert("Action="+Action);
      //alert("File="+File);
      if (typeof(dataContainerFlowPlayerLogged[File])=="undefined")
        {
          if (File.substr(File.length-4,4)!=".jpg")
            {              
              dataContainerFlowPlayerLogged[File]=true;
              if (typeof(dataContainerFlowPlayerLogUrlByFile[File])!="undefined")
                {
                  dataContainerLog(dataContainerFlowPlayerLogUrlByFile[File]);
                }
            };
        };
    }
}
