var streamFLVStats={init:function(){streamFLVStats.videos=new Array();streamFLVStats.ids=new Array();if(window.addEventListener){window.addEventListener('unload',streamFLVStats.onUnloadHandler,true)}else if(window.attachEvent){window.attachEvent('onunload',streamFLVStats.onUnloadHandler)}},onUnloadHandler:function(){for(var i=0;i<streamFLVStats.ids.length;i++){streamFLVStats.closeMovieData(streamFLVStats.ids[i])}},send:function(videoID){if(streamFLVStats.videos[videoID].length){var maxP='';for(var i=0;i<streamFLVStats.videos[videoID].length;i++){if(streamFLVStats.videos[videoID][i].event=='p'){maxP=streamFLVStats.videos[videoID][i].time}}if(streamFLVStats.videos[videoID][streamFLVStats.videos[videoID].length-1].event!='f'){streamFLVStats.videos[videoID].push({event:'c',time:maxP})}var swpA=new Array();var last='';for(var i=0;i<streamFLVStats.videos[videoID].length-1;i++){if(streamFLVStats.videos[videoID][i].event!='p'||last!='p'){swpA.push(streamFLVStats.videos[videoID][i])}last=streamFLVStats.videos[videoID][i].event}swpA.push(streamFLVStats.videos[videoID][streamFLVStats.videos[videoID].length-1]);var swp='';for(var i=0;i<swpA.length;i++){swp+=(swpA[i].event+swpA[i].time)}var request=new Image();request.src=(streamFLVStats.url?streamFLVStats.url:'')+(streamFLVStats.userId>0?'&user_id='+streamFLVStats.userId:'')+'&video_id='+videoID+'&data='+swp}},movieData:function(videoID){streamFLVStats.videos[videoID]=new Array();streamFLVStats.ids.push(videoID)},closeMovieData:function(videoID){if(streamFLVStats.videos[videoID]){streamFLVStats.send(videoID);streamFLVStats.videos[videoID]=new Array()}},trackEvent:function(videoID,eventFlag,movieTime){if(streamFLVStats.videos[videoID]){streamFLVStats.videos[videoID].push({event:eventFlag,time:movieTime})}}}