﻿var currentProductLabel = '';
var curVisistatId = '';

function startFlowPlayer(productLabel, visistatId) {
	currentProductLabel = productLabel;
	curVisistatId = visistatId;
	addPlayVisistat('start');
}

function addPlayVisistat(curPercent) {
	InsertExtraVisistat(curVisistatId, '' + currentProductLabel + ' progress = ' + curPercent);
}

jQuery(document).ready(function() {
	flowplayer("platinumVideo", "/media/movies/flvs/flowplayer.commercial-3.1.5.swf", { key: '#@bf894d5ed2e56f7f7e0',
		clip: {
			onCuepoint: [[70000, 141000], function(clip, cuepoint) {
				if (cuepoint == 70000)
					point = 'half';
				else if (cuepoint == 141000)
					point = 'complete';
				addPlayVisistat(point);
			}]
		},
		plugins: {
			controls: null
		}
	});
});