/**
 * change_image
 * プロフィールの画像変更
 *
 */
function change_image(illust_id, illustrator_name_text, illustrator_id) {
	var elem = document.getElementsByName("profile_image")[0];
	var link_elem = document.getElementsByName("illustrator_name")[0];
	base_url = elem.src.substring(0, elem.src.lastIndexOf("/"));
	illustrator_url = link_elem.href.substring(0, link_elem.href.lastIndexOf("/"));
	elem.src = base_url + "/" + illust_id;
	link_elem.href = illustrator_url + "/" +  illustrator_id;
	if (navigator.userAgent.indexOf("Firefox") > -1) {
		link_elem.textContent = illustrator_name_text;
	}else{
		link_elem.innerText = illustrator_name_text;
	}
}


/**
 * change_image
 * プロフィールのボイス変更
 *
 */
function change_voice(illust_id, illustrator_name_text, illustrator_id) {
	var link_elem = document.getElementsByName("actor_name")[0];
	illustrator_url = link_elem.href.substring(0, link_elem.href.lastIndexOf("/"));
	link_elem.href = illustrator_url + "/" +  illustrator_id;
	if (navigator.userAgent.indexOf("Firefox") > -1) {
		link_elem.textContent = illustrator_name_text;
	}else{
		link_elem.innerText = illustrator_name_text;
	}
}