function album_comment(){

	var theForm = document.form_comment;
	var emailRE = /^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
	var errMsg = "";
	var setfocus = "";

	if (theForm['ans_comment'].value == ""){
		errMsg = "กรุณาระบุความคิดเห็น";
		setfocus = "['ans_comment']";
	}
	if (!emailRE.test(theForm['ans_email'].value)){
		errMsg = "กรุณาระบุอีเมล์ให้ถูกต้อง";
		setfocus = "['ans_email']";
	}
	if (theForm['ans_name'].value == ""){
		errMsg = "กรุณาระบุชื่อ";
		setfocus = "['ans_name']";
	}
	if (errMsg != ""){
		alert(errMsg);
		eval("theForm" + setfocus + ".focus()");
	}
	else theForm.submit();

}


function savesong(){
	document.form_song.action ="/member_room/song_save.php";
	document.form_song.submit();
}

function deletesong(){
        if (window.confirm("ยืนยันการลบอีกครั้ง ?")) {
			document.form_song.action ="/member_room/song_delete.php";
			document.form_song.submit();
        }
}

function mp3download(key){

			document.location.href="/musicplaza/download.php?key="+key;

}