preloadImg(["/images/common/icon_loader.gif"]);

//change main contents
function changeInfo(id){

	//show loader
	document.getElementById('artistInfo').innerHTML = '<div class="loaderIcon"><img src="/images/common/icon_loader.gif" /></div>';

	//change contents
	var action = '/apis/api_artist/get_info/' + id + '/';
	sendRequest(showHtml,'','GET',action,true,true);
}
function showHtml(returnObj){
	if(returnObj.responseText){
		document.getElementById('artistInfo').innerHTML = returnObj.responseText;
	}
	else{
		document.getElementById('artistInfo').innerHTML = "-NO ENTRY-";
	}
}

