function goPage(page,orderType){
		var v3_from=from;
		if(v3_from==""){
			v3_from="12530";
		}
		new Ajax.Updater('Search_Content_Page', v3_WEB_ROOT+'/jsp/v3_search/search_song_page.jsp?keywords='+v3_keywords+'&pageNo='+page+'&from='+v3_from+'&orderType='+v3_orderType, {
			method: 'post',
 			parameters: "",
 			onComplete:init
 		});
}

function orderbyUp(){
	v3_orderType='2';
	goPage(1,v3_orderType);
}

function orderbyDown(){
	v3_orderType='1';
	goPage(1,v3_orderType);
}

