// JavaScript Document

// show or hide the list
function showList(index){
	var list = document.getElementById(index);
	if(list != null){
		if(list.style.display == "none") 
			{
				list.style.display = "";
				list.style.listStyle="none"
			}
		else list.style.display = "none"
	}
}

function openPopup(url, width, height){
	window.open(url, 'popup', 'width=' + width + ', height=' + height);	
}

function openAudio(id){
	openPopup('./file/swf/music_player.php?item_id=' + id, 230, 150);
}

function openVideo(url){
	openPopup(url, 420, 320);
}


function openMV(item_id){
	openPopup("index.php?page=content/multimedia/getMV&item_id=" + item_id, 382, 328);
}
