function openSearchAction(){
	keyword = window.document.frm_artist.keyword.value;
	keyword = escape(keyword);
	if(window.document.frm_artist.search_type[0].checked){
		search_type = "artist_name";
	}
	if(window.document.frm_artist.search_type[1].checked){
		search_type = "song_name";
	}
	artist_win = window.open("/tv/artist/artist_unescape.php?keyword=" + keyword + "&search_type=" + search_type, "artist_win", "width=600,height=600,resizable=no");
	window.event.returnValue=false;
}
function goSearchAction(artist_id){
	window.document.artist.pageID.value="1";
	window.document.artist.action = "artist.php";
	window.document.artist.submit();
}
function setFocus(){
	this.window.focus();
}
function goNextAction(artist_id){
	window.document.forms[0].artist_id.value = artist_id;
	window.document.forms[0].action = "artist_detail.php?artist_id=" + artist_id;
	//window.document.forms[0].action = "artist_detail.php";
	window.document.forms[0].submit();
}
function goReloadAction(pageid){
	window.document.forms[0].pageID.value = pageid;
	window.document.forms[0].keyword.value = window.document.forms[0].keyword_origin.value;
	window.document.forms[0].action = "artist.php";
	window.document.forms[0].submit();
}
function openArtistWin(artist_id){
		artist_win = window.open("http://www.mtvjapan.com/tv/artist/artist_detail.php?artist_id="+artist_id, "artist_win", "width=600,height=600,resizable=no");
		artist_win.focus();
}

function openArtistWinTemp(){
		artist_win =window.open("/tv/artist/artist.php", "artist_win", "width=600,height=600,resizable=no");
		artist_win.focus();
}