$.ionSound.play("/views/Eshopper/sound/bell_ring");
function playSound(file) {
if (file == undefined) {var file="/engine/modules/chat/chat.mp3";}
chat.stopSound();
$('<iframe src="' + file + '" class="d-none notify-sound" autoplay style="display:none;"></iframe>').appendTo('#ChatBox');
}
function stopSound() {
$("#ChatBox .chat-notify").remove();
}