// Reproductor 

function reproduce(_cual) {
	document.getElementById("audio").playSound(_cual);
}

function play_pause() {
	document.getElementById("audio").togglePause();
}

function stop() {
	document.getElementById("audio").stop();
}

function onSoundComplete() {
	//No Mostramos ningún mensaje.
	//alert("Canción completada!!");
}

