var sendToFlash = {
	urlFile:'',
	testimony:'',
	signature:'',
	sendData:function(){
		document.getElementById("id_flash").getInfo(sendToFlash.urlFile,sendToFlash.testimony,sendToFlash.signature);
	},
	setData:function(urlFile, signature, testimony){
		sendToFlash.testimony = testimony;
		sendToFlash.signature = signature;
		sendToFlash.urlFile = urlFile;
	}
};


var openPopinFromFlash = function(urlVid,titre,soustitre) {
	var urlFlv = urlVid.replace(/.+urlswf=/, '');
	sendToFlash.setData(urlFlv, titre, soustitre);
	box.ui('generic.popin').setNamespace('video').set({url: urlVid, cache: false});
	box.ui('generic.popinloader').visible(false).addToDOM({target: 'body'}).applyStyles({visibility: 'visible', opacity: 0, top: 'middle', left: 'middle'}, 'viewport').animate({opacity: 0.999}, 300, 'open');
};

box.bind({
	'addtodom.generic.popin.video': function(e) {
		setFlash.init({
			imgPath:"/fr-fr/img/player/showroom/",
			videoPath:"/fr-fr/swf/player/showroom/"
		});
		window.setTimeout(function() {
			sendToFlash.sendData();
		//}, 80);
		}, 500);
	}
});