var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;

function thisMovie(movieName) {
	return (isIE) ? window[movieName] : document[movieName];
}

/*
 * Functions called by flash
 */
 
function playSound(id, sound_index){
	thisMovie(id).playSound(sound_index);
}
function setSounds(id, sounds){
	thisMovie(id).setSounds(sounds);
}
function stopSound(id){
	thisMovie(id).stopSound();
}


// function(s) called from ActionScript
function closePlayer() {
	//audio_player.style.visibility = 'hidden';
}
