﻿var myListener = new Object();myListener.onInit = function(){};var isPlay = false;var oldId = '';var oldImgStop = '';var oldImgPlay = '';myListener.onUpdate = function(){};
function _getFlashObject() { return document.getElementById("myFlash");}
function play(filename, idname, newimg, oldimg) {if(oldId && (idname != oldId)) {
$("#" + oldId).html('');$("#" + oldId).html('<img src="/Icons/repondeur_mobile/' + oldImgStop + '"  />');
stop();isPlay = false;oldId = '';
}
if(!isPlay) {	            		
$("#" + idname).html('');$("#" + idname).html('<img src="/Icons/repondeur_mobile/' + newimg + '"  />');_getFlashObject().SetVariable("method:setUrl", "/mp3/" + filename);_getFlashObject().SetVariable("method:play", "");
isPlay = true;oldId = idname;oldImgStop = oldimg;oldImgPlay = newimg;} else {$("#" + idname).html('');
$("#" + idname).html('<img src="/Icons/repondeur_mobile/' + oldimg + '"  />');
stop();isPlay = false;oldId = '';}}
function pause() {_getFlashObject().SetVariable("method:pause", "");}
function stop() {_getFlashObject().SetVariable("method:stop", "");}
