function init() {
	    dwr.util.useLoadingImage("/images/ajaxload/1.gif",90,-100,1);
}

function addFavorater(item_code,type){
	if(item_code==""){
		alert("请选择您要收藏的专集!");
		return false;
	}else{
		JFavorater.addFavorater(item_code,type,showFavoraterResult);
	}
}
function clearSession1(){
	JFavorater.clearSession();
	
}
function showFavoraterResult(msg) {
	try{
		var myArray=msg.split("|");
		if(myArray[0]=="logion"){
			window.location="/kuke/Redirect?type=login&from="+myArray[1];
		}
		if(myArray[0]=="message"){
			alert(myArray[1]);
		}
		if(myArray[0]=="repeat"){
			alert(myArray[1]);
		}
	}catch(e){
			
	}
}


