function SoH_Media(obj,is_close) {
	try {
		var hideshow = document.getElementById(obj);
		if (is_close) {
			//hideshow.innerHTML = '';
			//hideshow.style.display = "none";
			document.getElementById('playing_field').innerHTML = '';
			//document.getElementById("show_hide").style.display = "none";
		}
		else {
			if(hideshow.style.display != "none") {
				hideshow.style.display = "none";
				document.getElementById("SoH").innerHTML = '[+] Hiện mục nghe nhạc';
			}
			else {
				hideshow.style.display = "block";
				document.getElementById("SoH").innerHTML = '[-] Dấu mục nghe nhạc';
			}
		}
		return false;
	} catch( e) {}
}

var loadingText = "<center><img src='http://"+ location.host+"/nghe-nhac-mp3/templates/funnycolors/img/loading.gif'> <b class='loadingText'>Đang tải dữ liệu ...</b></center>";
