function playSound(vId) {
	var sound =	document.getElementById(vId);
	if (sound.controls) {
		sound.controls.play();
	}
}

function stopSound(vId) {
	var sound =	document.getElementById(vId);
	if (sound.controls) {
		sound.controls.stop();
	}
}
