Greasy Fork is available in English.

JASRAC. work importer/editor into MusicBrainz + MB-JASRAC-音楽の森 links + MB back search links

One click imports JASRAC works into MusicBrainz (name, iswc, type, credits, edit note, sort name, search hint) and マス歌詞®(mass-lyrics) and wikipedia links. It will do the same magic in work editor. Work links to both JASRAC and 音楽の森 / ongakunomori / music forest / minc / magic db and back to MB

Від 15.11.2014. Дивіться остання версія.

(function(){"use strict";var meta={rawmdb:function(){
// ==UserScript==
// @name         JASRAC. work importer/editor into MusicBrainz + MB-JASRAC-音楽の森 links + MB back search links
// @version      2014.11.14.2215
// @description  One click imports JASRAC works into MusicBrainz (name, iswc, type, credits, edit note, sort name, search hint) and マス歌詞®(mass-lyrics) and wikipedia links. It will do the same magic in work editor. Work links to both JASRAC and 音楽の森 / ongakunomori / music forest / minc / magic db and back to MB
// @homepage     http://userscripts-mirror.org/scripts/show/94676
// @supportURL   https://github.com/jesus2099/konami-command/issues
// @namespace    https://github.com/jesus2099/konami-command
// @author       PATATE12 aka. jesus2099/shamo
// @licence      CC BY-NC-SA 3.0 (https://creativecommons.org/licenses/by-nc-sa/3.0/)
// @since        2011-01-14
// @icon         data:image/gif;base64,R0lGODlhEAAQAKEDAP+/3/9/vwAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh/glqZXN1czIwOTkAIfkEAQACAwAsAAAAABAAEAAAAkCcL5nHlgFiWE3AiMFkNnvBed42CCJgmlsnplhyonIEZ8ElQY8U66X+oZF2ogkIYcFpKI6b4uls3pyKqfGJzRYAACH5BAEIAAMALAgABQAFAAMAAAIFhI8ioAUAIfkEAQgAAwAsCAAGAAUAAgAAAgSEDHgFADs=
// @grant        none
// @include      http*://*musicbrainz.org/work/*
// @include      http://www2.jasrac.or.jp/eJwid/main.jsp?trxID=*WORKS_CD=*
// @include      https://www.minc.gr.jp/db/*
// @exclude      *://*musicbrainz.org/work/*edits*
// @run-at       document-end
// ==/UserScript==
	}};
	if (meta.rawmdb && meta.rawmdb.toString && (meta.rawmdb = meta.rawmdb.toString())) {
		var kv/*key,val*/, row = /\/\/\s+@(\S+)\s+(.+)/g;
		while ((kv = row.exec(meta.rawmdb)) !== null) {
			if (meta[kv[1]]) {
				if (typeof meta[kv[1]] == "string") meta[kv[1]] = [meta[kv[1]]];
				meta[kv[1]].push(kv[2]);
			} else meta[kv[1]] = kv[2];
		}
	}
	var chrome = "Please run “"+meta.name+"” with Tampermonkey instead of plain Chrome.";
	var DEBUG = localStorage.getItem("jesus2099debug");
	var userjs = "jesus2099userjs94676";
	var userjsname = meta.name+" '''"+meta.version+"''' ("+meta.namespace+")";
	var RE_GUID = "[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}";
	var reISWC = "T- ?\\d{3}\\.\\d{3}.\\d{3}-\\d";
	var reCode = "\\d[A-Z\\d]\\d-\\d{4}-\\d";
	var reAnnotCode = "(?:jasrac|作品コード)\\W+("+reCode+")";
	var MBS = self.location.protocol+"//"+self.location.host;
	var pagecat = self.location.href.match(new RegExp("(jasrac(?=\\.or\\.jp)|minc(?=\\.gr\\.jp)|work(/"+RE_GUID+"/edit$|/create)|work)"));
	var oldTitle = document.title;
	var spam = " ← needs ''JASRAC direct links enabler'' ("+meta.namespace+")";
	var xhrForm = {}, xhrWork = {}, h1;
	var MBlookups = [];
	var joblist = [];
	var xhrJobs = {
		"workinfo-get":{
			"info": "PLEASE WAIT (get current work info)",
			"async": true,
			"method": "get",
			"init": function(xhr) {
				xhrJobs["workinfo-get"].url = "/ws/2/work/"+xhrWork.mbid+"?fmt=json&inc=annotation+aliases";
			},
			"onload": function() {
				if (this.status > 199 && this.status < 400 && this.responseText.match(new RegExp(xhrWork.mbid))) {
					var res = JSON.parse(this.responseText);
					xhrWork.error = res.error;
					if (!xhrWork.error) {
						xhrWork.aliases = res.aliases;
						xhrWork.annotation = res.annotation?res.annotation:"";
						var code = xhrWork.annotation.match(new RegExp(reAnnotCode, "i"));
						iname.parentNode.parentNode.insertBefore(createTag("div", {"class":"row"}, null, null, [createTag("label", null, null, null, "JASRAC作品コード:"), createTag("b", null, {"background-color":background}, null, code?createA(code[1], workLookupURL("jasrac", "code", code[1]), "JASRAC work code from annotation", "_blank"):"なし")]), /*xhrForm.name*/iname.parentNode);
						aliasTable();
					}
					document.title = oldTitle;
				}
			},
		},
		"work-create/edit":{
			"method": "post",
			"async": true,
			"init": function(xhr) {
				xhrJobs["work-create/edit"].info = (self.location.href.match(/work\/create$/)?"create":"edit")+" work";
				xhrJobs["work-create/edit"].url = xhrForm.form.getAttribute("action");
				var inps = xhrForm.form.querySelectorAll("form > div > fieldset:not(."+userjs+") input[name]:not([name='']):not([type='button']), form > div > fieldset:not(."+userjs+") textarea[name], form > div > fieldset:not(."+userjs+") select[name]");
				xhrJobs["work-create/edit"].params = "";
				for (var inp=0; inp<inps.length; inp++) {
					xhrJobs["work-create/edit"].params += (inp>0?"&":"")+inps[inp].getAttribute("name")+"="+encodeURIComponent(inps[inp].value);
				}
			},
			"onload": function() {
				var mbid = this.responseText.match(new RegExp("<h1>(?:<span class=\"mp\">)?<a[^>]+("+RE_GUID+")\""));
				xhrWork.id = this.responseText.match(new RegExp("<a[^>]+/work/merge_queue\\?add-to-merge=([0-9]+)\""));
				if (!xhrWork.edit && mbid) {
					xhrWork.mbid = mbid[1];
					if (location.pathname.match(/work\/create$/) && h1) {
						h1.appendChild(document.createTextNode(" "));
						h1.appendChild(createA(iname.value, "/work/"+xhrWork.mbid, null, "_blank"));
					}
				}
				if (xhrWork.mbid && xhrWork.id && xhrWork.mbid == mbid[1]) {
					xhrMachine();
				}
				else {
					alert("Work create (or edit) error #"+this.status+".\n\n"+this.responseText);
					h1.style.setProperty("background-color", "pink");
					joblist = [];
					disable(xhrForm.form, false);
				}
			},
		},
		"batch-relationship-create":{
			"method": "post",
			"async": false,
			"url": "/relationship-editor",
			"init": function(xhr) {
				var inps = xhrForm.form.querySelectorAll("div#"+userjs+"wcs input.name.lookup-performed, form > div > fieldset:not(."+userjs+") textarea.edit-note");
				xhrJobs["batch-relationship-create"].params = "rel-editor.as_auto_editor="+(isAutoEdit()?"1":"0");
				var reli = 0;
				for (var inp=0; inp<inps.length; inp++) {
					var input = inps[inp];
					if (input.className.match(/lookup-performed/)) {
						var row = getParent(input, "div", "row");
						var rel = "&rel-editor.rels."+(reli++)+".";
						xhrJobs["batch-relationship-create"].params += 
							rel+"action=add"+
							rel+"link_type="+row.querySelector("input[name='ar.link_type_id']").value+
							rel+"period.ended=0"+
							rel+"entity.0.gid="+encodeURIComponent(row.querySelector("input[class='gid']").value)+
							rel+"entity.0.type="+input.parentNode.className.match(/artist|label/)+
							rel+"entity.1.gid="+xhrWork.mbid+
							rel+"entity.1.type=work";
						if (row.querySelector("input[name='ar.attrs.additional']")) {
							xhrJobs["batch-relationship-create"].params += rel+"attrs.additional=1";
						}
						if (row.querySelector("input[name='ar.attrs.translated']")) {
							xhrJobs["batch-relationship-create"].params += rel+"attrs.translated=1";
						}
					} else if (input.tagName == "TEXTAREA") {
						xhrJobs["batch-relationship-create"].params += "&rel-editor.edit_note="+encodeURIComponent(input.value.replace(/('''PERFORMERS'''|'''MAIN TITLE''')[^※]+※/, "''{…} cf. MB add work edit for full JASRAC extract''\n\n※").replace(/\u00a0(.+)/g, "")+"\n"+MBlinks());
					}
				}
			},
		},
		"annotation-get":{
			"async": true,
			"info": "get current work annotation",
			"method": "get",
			"init": function(xhr) {
				xhrJobs["annotation-get"].url = "/ws/2/work/"+xhrWork.mbid+"?inc=annotation";
			},
			"onload": function() {
				if (this.status > 199 && this.status < 400 && this.responseText.match(new RegExp("<work.+id=\""+xhrWork.mbid+"\">"))) {
					var oldannot = this.responseText.match(/<annotation><text>([^<]+)<\/text><\/annotation>/);
					if (!oldannot || oldannot && !oldannot[1].match(new RegExp(xhrWork.code))) {
						if (oldannot) { xhrWork.annotation = oldannot[1]; }
					}
				}
				xhrMachine();
			},
		},
		"annotation-add":{
			"async": false,
			"info": "JASRAC work code annotation",
			"method": "post",
			"init": function(xhr) {
				xhrJobs["annotation-add"].url = "/work/"+xhrWork.mbid+"/edit_annotation";
				var curl = workLookupURL("jasrac", "code", xhrWork.code);
				xhrJobs["annotation-add"].params = "edit-annotation.text="+encodeURIComponent("JASRAC: '''"+xhrWork.code+"''' ([http://tickets.musicbrainz.org/browse/MBS-7359|MBS-7359])"+(xhrWork.annotation?"\n"+xhrWork.annotation:""))+"&edit-annotation.changelog="+encodeURIComponent("JASRAC: "+xhrWork.code+" (MBS-7359)")+"&edit-annotation.edit_note="+encodeURIComponent("JASRAC: '''"+xhrWork.code+"''' ("+curl+")"+spam+"\nStill needed for JASRAC auto‐linking (until http://tickets.musicbrainz.org/browse/MBS-7359).\n\n"+MBlinks());
			},
		},
		"alias-add":{
			"async": false,
			"method": "post",
			"init": function(xhr) {
				xhrJobs["alias-add"].url = "/work/"+xhrWork.mbid+"/add-alias";
				xhrJobs["alias-add"].params = "edit-alias.as_auto_editor="+(isAutoEdit()?"1":"0");
				var newAlias = xhrWork.newAliases.shift();
				if (newAlias) {
					xhrJobs["alias-add"].info = newAlias["edit-alias.name"]+" alias";
					if (newAlias["edit-alias.sort_name"].length > 0 && newAlias["edit-alias.sort_name"] != newAlias["edit-alias.name"]) { xhrJobs["alias-add"].info += "("+newAlias["edit-alias.sort_name"]+")"; }
					for (var p in newAlias) { if (newAlias.hasOwnProperty(p)) {
						xhrJobs["alias-add"].params += "&"+p+"="+encodeURIComponent(newAlias[p]);
					} }
					xhrJobs["alias-add"].params += "&edit-alias.period.ended=&edit-alias.edit_note="+encodeURIComponent(teditnote.value.replace(/'''CREDITS'''[^※]+'''MAIN TITLE'''/, "'''MAIN TITLE'''")+"\n"+MBlinks());
				}
			},
		},
	};
	if (pagecat && !document.title.match(/slow down!/i)) {
		pagecat = pagecat[1].replace(new RegExp(RE_GUID+"/"), "");
		var background = "#FF6";/*favourite game*/
		var cOK = "#CFC";/*bad for ozone layer*/
		var cWARN = "gold";
		var cERR = "pink";
		var hasLyrics = "詞";
		var hasCredits = "作曲";
		var vocal = "vocal";
		var instrumental = "instrumental";
		if (DEBUG) console.log(userjs+" pagecat : "+pagecat);
		switch (pagecat) {
			case "jasrac":
				var workName;
				var sakuhinCode;
				var iswc;
				var summary = "";
				var createWork = "https://musicbrainz.org/work/create?edit-work.name=";
				var isVocal = false;
				var tables = document.getElementsByTagName("table");
				if (tables) {
					var work = tables[1];
					if (work) {
						var sakuhin = work.getElementsByTagName("b")[2].firstChild;
						var tmp = sakuhin.nodeValue.split("\u00a0");
						workName = fixSTR(tmp[2]);
						sakuhinCode = tmp[1];
						document.title = workName+" "+sakuhinCode+" "+document.title;
						createWork += encodeURIComponent(workName);
						summary += workName+" (work code '''"+sakuhinCode+"'''/"+sakuhinCode.replace(/-/g, "");
						var iswcLink = work.getElementsByTagName("a");
						if (iswcLink.length > 3) {
							iswc = iswcLink[3].parentNode.parentNode.lastChild.nodeValue.replace(" ", "").substring(0, 15);
							summary += " — ISWC '''"+iswc+"'''/"+iswc.replace(/[-\.]/g, "");
						}
						summary += ")\n";
						var srccred = tables[3];
						if (srccred) {
							var tmpcred = "";
							var credtr = srccred.getElementsByTagName("tr");
							if (credtr) {
								for (var icred=2; icred < credtr.length; icred++) {
									var credtd = credtr[icred].getElementsByTagName("td");
									if (credtd) {
										var credtype = credtd[2].textContent.trim();
										var credtrust = credtd[4].textContent.trim(); if (credtrust != "") { credtrust = "\u00a0(信託状況:"+credtrust/*+(!credtrust.match(/全信託/)?"sic":"")*/; }
										var credmngr = credtd[5].textContent.trim(); if (credmngr != "") { credtrust += (credtrust!=""?"/":"(")+credmngr; }
										if (credtrust != "") { credtrust += ")"; }
										tmpcred += credtype+":"+credtd[1].textContent.trim()+credtrust+"\n";
										if (!isVocal && credtype.indexOf(hasLyrics)!=-1) {
											isVocal = true;
										}
									}
								}
							}
							if (tmpcred != "") {
								summary += "\n'''CREDITS'''\n"+tmpcred;
							}
						}
						var perf = tables[6];
						if (perf) {
							var tmpperf = "\n'''PERFORMERS'''\n";
							var isperf = true;
							var perfs = perf.getElementsByTagName("tr");
							for (var iperf=3; iperf < perfs.length; iperf++) {
								var artist = perfs[iperf].getElementsByTagName("td")[1].textContent.trim();
								if (artist == "") { isperf = false; break; }
								tmpperf += (iperf>3?"/":"")+artist;
							}
							if (isperf) { summary += tmpperf+"\n"; }
						}
						var alias = tables[5];
						if (alias) {
							var transtypes = ["'''genuine'''", "''yomikata''", "latin"];
							var aliases = alias.getElementsByTagName("tr");
							var tmptran = "\n'''MAIN TITLE'''";
							var hastran = false;
							var tmpali = "\n'''ALIASES/SUBTITLES/SEARCHES/TRANSLATIONS'''";
							var hasali = false;
							for (var iali=2; iali < aliases.length; iali++) {
								var type = aliases[iali].getElementsByTagName("td")[0].textContent.match(/(正題|タイトルの続き)/);
								if (type) type = type[1];
								else type = "";
								var alis = aliases[iali].getElementsByTagName("div");
								for (var itran=0; itran<3; itran++) {
									var ali = alis[itran].textContent.trim();
									if(type == "正題") {
										if (!hastran) { hastran = true; }
										tmptran += "\n"+ali+" ("+transtypes[itran]+")";
									}
									else {
										if (type == "タイトルの続き") {
											if (!ali.match(/^[--]$/)) {
												var prevalias = tmpali.substring(tmpali.lastIndexOf("\n")).split("◇");
												prevalias[itran] += ali;
												tmpali = tmpali.substring(0, tmpali.lastIndexOf("\n")) + prevalias.join("◇");
											}
										}
										else {
											if (!hasali) { hasali = true; }
											tmpali += (itran>0?"◇":"\n")+ali;
										}
									}
								}
							}
							if (hastran) { summary += tmptran+"\n"; }
							if (hasali) { summary += tmpali+"\n"; }
							summary += "\n";
						}
				/* -- vv ------ copiable full summary ------ vv -- */
						var tr = document.createElement("tr");
						var td = document.createElement("td");
						td.setAttribute("colspan", "3");
						td.style.setProperty("text-align", "center");
						td.style.setProperty("background-image", "/eJwid/img/kokoronelogo_A-2out.jpg");
						summary += "※ Imported from '''JASRAC''' ('''JA'''panese '''S'''ociety for '''R'''ights of '''A'''uthors, '''C'''omposers and publishers)\n"+userjsname+"\n";
						summary += "'''JASRAC''' work page: "+workLookupURL("jasrac", "code", sakuhinCode)+spam+"\n";
						summary += "音楽の森(mirror): "+workLookupURL("minc", "code", sakuhinCode)+" ← needs account";
						td.appendChild(document.createTextNode("click to select → "));
						var ta = createTag("textarea", {"name":"tsummary"}, {}, {}, summary);
						ta.setAttribute("id", ta.getAttribute("name"));
						ta.style.setProperty("width", "40%")
						ta.setAttribute("rows", "1");
						ta.style.color = "black";
						ta.style.background = background;
						ta.addEventListener("focus", function(e) {
							this.setAttribute("rows", "20");
							this.select();
						}, false);
						ta.addEventListener("mousemove", function(e) {
							this.blur();
							this.focus();
						}, false);
						ta.addEventListener("mouseout", function(e) {
							this.setAttribute("rows", "1");
						}, false);
						td.appendChild(ta);
						td.appendChild(document.createTextNode(" ← CONTROL key + mouse over to expand + select"));
						tr.appendChild(td);
						work.appendChild(tr);
				/* -- vv ------ Add to MB ------ vv -- */
						var form = createTag("form", {"action":createWork.split("?")[0], "method":"post", "accept-charset":"utf-8", "title":"PLEASE REVIEW before final submission!"}, {"display":"inline", "background":background});
						form.appendChild(createTag("input", {"type":"hidden", "name":"edit-work.attributes.0.type_id", "value":"3"}));
						form.appendChild(createTag("input", {"type":"hidden", "name":"edit-work.attributes.0.value", "value":sakuhinCode}));
						createWork += "&edit-work.attributes.0.type_id=3&edit-work.attributes.0.value="+sakuhinCode;
						if (iswc) {
							form.appendChild(createTag("input", {"type":"hidden", "name":"edit-work.iswcs.0", "value":iswc}));
							createWork += "&edit-work.iswcs.0="+iswc;
						}
						if (isVocal) {
							form.appendChild(createTag("input", {"type":"hidden", "name":"edit-work.type_id", "value":"17"}));
							createWork += "&edit-work.type_id=17";
						}
						else {
							form.appendChild(createTag("input", {"type":"hidden", "name":"edit-work.language_id", "value":"486"}));
							createWork += "&edit-work.language_id=486";
						}
						form.appendChild(createTag("input", {"type":"hidden", "name":"edit-work.edit_note", "value":summary}));
						form.appendChild(createTag("a", {"title":"Import this work in MusicBrainz (name, iswc, type, edit note)"}, {"background":background,"cursor":"pointer","text-decoration":"underline","color":"blue"}, {"click":function(e){
							this.parentNode.setAttribute("target", e.shiftKey||e.ctrlKey?"_blank":"_self");
							this.parentNode.submit();
							return stop(e);
						}}, "Add to MB"));
						sakuhin.parentNode.appendChild(document.createTextNode(" ("));
						sakuhin.parentNode.appendChild(form);
						sakuhin.parentNode.appendChild(document.createTextNode(")"));
				/* -- vv ------ sakuhin links ------ vv -- */
						addAfter(createTag("sup"), sakuhin).appendChild(createA("M", workLookupURL("mb", "name", workName), "Search this work name in MusicBrainz"));
						addAfter(document.createTextNode(" "), sakuhin);
				/* -- vv ------ sakuhin code links ------ vv -- */
						var span = document.createElement("span");
						span.appendChild(document.createTextNode(sakuhinCode));
						span.appendChild(document.createTextNode(" "));
						var suppo = span.appendChild(createTag("sup"));
						suppo.appendChild(createA("音", workLookupURL("minc", "code", sakuhinCode), "This work in 音楽の森"));
						suppo.appendChild(createA("M", workLookupURL("mb", "code", sakuhinCode), "Search this work code in MusicBrainz"));
						span.appendChild(document.createTextNode(" "));
						span.appendChild(document.createTextNode(workName));
						sakuhin = sakuhin.parentNode.replaceChild(span, sakuhin);
				/* -- vv ------ iswc links ------ vv -- */
						if (iswc) {
							addAfter(createTag("sup"), iswcLink[iswcLink.length-1].parentNode.parentNode.lastChild).appendChild(createA("M", workLookupURL("mb", "iswc", iswc), "Search this ISWC in MusicBrainz"));
						}
					}
				}
				break;
			case "minc":
				var sakuhinmei = document.querySelector("a[href='#sakuhinmei']");
				var sakuhincode = document.querySelector("a[href='#sakuhincode']");
				var iswccode = document.querySelector("a[href='#iswccode']");
				if (sakuhinmei && sakuhincode && iswccode) {
					sakuhinmei = getParent(sakuhinmei, "th");
					var sakuhinmei_v = getSibling(sakuhinmei, "td").textContent;
					sakuhincode = getParent(sakuhincode, "th");
					var sakuhincode_v = getSibling(sakuhincode, "td").textContent.match(new RegExp(reCode))+"";
					iswccode = getParent(iswccode, "th");
					var iswccode_v = getSibling(iswccode, "td").textContent.match(new RegExp(reISWC));
					sakuhinmei.insertBefore(createTag("sup", {}, {"float":"right"}), sakuhinmei.firstChild).appendChild(createA("J", workLookupURL("jasrac", "name", sakuhinmei_v), "Search this work name in JASRAC"));
					sakuhinmei.insertBefore(createTag("sup", {}, {"float":"right"}), sakuhinmei.firstChild).appendChild(createA("M", workLookupURL("mb", "name", sakuhinmei_v), "Search this work name in MusicBrainz"));
					sakuhincode.insertBefore(createTag("sup", {}, {"float":"right"}), sakuhincode.firstChild).appendChild(createA("J", workLookupURL("jasrac", "code", sakuhincode_v), "Go to this work in JASRAC"));
					sakuhincode.insertBefore(createTag("sup", {}, {"float":"right"}), sakuhincode.firstChild).appendChild(createA("M", workLookupURL("mb", "code", sakuhincode_v), "Search this work code in MusicBrainz"));
					if (iswccode_v) {
						iswccode_v += "";
						iswccode.insertBefore(createTag("sup", {}, {"float":"right"}), iswccode.firstChild).appendChild(createA("J", workLookupURL("jasrac", "iswc", iswccode_v), "Search this ISWC in JASRAC"));
						iswccode.insertBefore(createTag("sup", {}, {"float":"right"}), iswccode.firstChild).appendChild(createA("M", workLookupURL("mb", "iswc", iswccode_v.replace(/T- /, "T-")), "Search this ISWC in MusicBrainz"));
					}
				}
				else {
					var sakuhincodet = document.querySelectorAll("a[href^='SakCdInfo.aspx?SAKUHINCD='], a[href^='SakCDInfo.aspx?SAKUHINCD='], div#ctl00_ctl00_phMain_phDBMain_PanelDetail table.tbl > tbody > tr > td:nth-child(8)");
					for (var st=0; st < sakuhincodet.length; st++) {
						var sakuhincode = "", prec = sakuhincodet[st];
						if (sakuhincodet[st].tagName == "A") {
							sakuhincode += sakuhincodet[st].getAttribute("href").match(/.{8}$/);
						}
						else {
							sakuhincode += sakuhincodet[st].textContent.trim().replace(/-/, "");
							prec = prec.lastChild;
						}
						addAfter(createA("M", workLookupURL("mb", "code", sakuhincode), "Search this work code in MusicBrainz"), prec)
						addAfter(createA("J", workLookupURL("jasrac", "code", sakuhincode), "Go to this work in JASRAC"), prec)
					}
				}
				break;
			case "work":
				if (getExtLinks()) {
					/* -- vv ------ JASRAC + ongakunomori sakuhin code link ------ vv -- */
					var sakuhincode, codes = new RegExp(reAnnotCode, "ig"), donecodes = [];
					for (var workattr=document.querySelectorAll("div#sidebar > dl.properties > dd:not(.iswc):not(.lyrics-language):not(.type)"), at=0; at<workattr.length; at++) {
						var dd = workattr[at];
						var dt = getSibling(dd, "dt", null, true);
						if (dt && dt.textContent.match(/jasrac id/i)) {
							var ddcode = dd.textContent.trim();
							dd.replaceChild(createTag("a", {"href":workLookupURL("jasrac", "code", ddcode)}, {}, {}, ddcode), dd.firstChild);
							if (donecodes.indexOf(ddcode) < 0) {
								donecodes.push(ddcode);
								getExtLinks().appendChild(createTag("li", {"class":userjs+"jasrac"}, null, null, createTag("a", {"href":workLookupURL("jasrac", "code", ddcode)}, {"background":background}, {}, "JASRAC — "+ddcode)));
								getExtLinks().appendChild(createTag("li", {"class":userjs+"minc"}, null, null, createTag("a", {"href":workLookupURL("minc", "code", ddcode)}, {"background":background}, {}, "音楽の森 — "+ddcode)));
							}
							else {
								if (confirm("Duplicate JASRAC ID detected in work attributes.\nDo you want to edit?")) {
									location.href = location.pathname+"/edit";
								}
							}
						}
					}
					var annotation = document.querySelector("div#content div.annotation");
					if (annotation) {
						while (sakuhincode = codes.exec(annotation.textContent)) {
							sakuhincode = sakuhincode[1];
							if (donecodes.indexOf(sakuhincode) < 0) {
								donecodes.push(sakuhincode);
								getExtLinks().appendChild(createTag("li", {"class":userjs+"jasrac"}, null, null, createTag("a", {"href":workLookupURL("jasrac", "code", sakuhincode)}, {"background":background}, {}, "JASRAC — "+sakuhincode)));
								getExtLinks().appendChild(createTag("li", {"class":userjs+"minc"}, null, null, createTag("a", {"href":workLookupURL("minc", "code", sakuhincode)}, {"background":background}, {}, "音楽の森 — "+sakuhincode)));
							}
							else {
								if (confirm("Bogus JASRAC ID detected in annotation (already set as work attribute).\nDo you want to edit annotation?")) {
									location.href = location.pathname+"/edit_annotation?edit-annotation.changelog=JASRAC+ID+is+already+set+as+an+attribute";
								}
							}
						}
					}
					/* -- vv ------ JASRAC ISWC link ------ vv -- */
					var iswcs = document.querySelectorAll("div#sidebar > dl.properties > dd.iswc > a[href*='/iswc/'] code");
					for (var iswc=0; iswc<iswcs.length; iswc++) {
						var iswct = iswcs[iswc].textContent;
						getExtLinks().appendChild(createTag("li", {"class":userjs+"jasrac"}, null, null, createA("JASRAC — "+iswct, workLookupURL("jasrac", "iswc", iswct.replace(/T-/, "T-+")), "Search this ISWC in JASRAC")));
					}
					/* -- vv ------ JASRAC name search link ------ vv -- */
					var title = document.querySelector("h1 a").textContent.trim();
					getExtLinks().appendChild(createTag("li", {"class":userjs+"jasrac"}, null, null, jasracSearch("title", title)));
					getExtLinks().appendChild(createTag("li", {"class":userjs+"minc"}, null, null, mincSearch("title", title)));
				}
				break;
			case "work/edit":
				xhrWork.edit = true;
				xhrWork.mbid = self.location.pathname.match(new RegExp(RE_GUID));
				xhrMachine(xhrJobs["workinfo-get"]);
			case "work/create":
				h1 = document.querySelector("h1");
				var iname = document.getElementById("id-edit-work.name");
				xhrForm.form = getParent(iname, "form");
				xhrForm.form.addEventListener("submit", function(e) {
					var inputs = xhrForm.form.querySelectorAll(xhrForm.originalInputs.css);
					var changed = !(xhrWork.edit) || (xhrForm.originalInputs.inputs.length != inputs.length);
					for (i=0; !changed && i<xhrForm.originalInputs.inputs.length; i++) {
console.log(i+"("+xhrForm.originalInputs.inputs.length+"≠"+inputs.length+")\n*"+xhrForm.originalInputs.inputs[i].outerHTML+"*\n-------------------\n#"+xhrForm.originalInputs.values[i]+"#\n-------------------\n$"+xhrForm.originalInputs.inputs[i].value+"$");
						if (xhrForm.originalInputs.inputs[i].value != xhrForm.originalInputs.values[i]) {
							changed = true;
						}
					}
					if (changed) { joblist.push("work-create/edit"); }
					var rels = this.querySelectorAll("div#"+userjs+"wcs input.name.lookup-performed").length;
					if (rels > 0) {
						xhrJobs["batch-relationship-create"].info = rels+" relationship"+(rels>1?"s":"");
						joblist.push("batch-relationship-create");
					}
					if (xhrWork.code && xhrWork.edit && !xhrWork.jasracidmatch) {/*je sais pas si je comprendrai toujours ça la prochaine fois*/
						if (xhrWork.edit && typeof xhrWork.annotation == "undefined") {
							joblist.push("annotation-get");
						}
						if (!xhrWork.edit || typeof xhrWork.annotation == "string" && !xhrWork.annotation.match(new RegExp(xhrWork.code))) {
							joblist.push("annotation-add");
						}
					}
					var aliases = xhrForm.form.querySelectorAll("table#"+userjs+"alta > tfoot > tr > td > input."+userjs+"addit[type='checkbox']");
					xhrWork.newAliases = [];
					for (var a=0; a<aliases.length; a++) {
						if (aliases[a].checked) {
							var tr = getParent(aliases[a], "tr");
							var n = tr.querySelector("input[name='edit-alias.name']");
							var sn = tr.querySelector("input[name='edit-alias.sort_name']");
							var t = tr.querySelector("*[name='edit-alias.type_id']");
							var p = tr.querySelector("input[name='edit-alias.primary_for_locale']");
							var l = tr.querySelector("input[name='edit-alias.locale']");
							if (
								n && typeof n.value == "string" && n.value.length > 0 &&
								sn && typeof sn.value == "string" &&
								t && typeof t.value == "string" &&
								p && typeof p.checked == "boolean" &&
								l && typeof l.value == "string"
							) {
								xhrWork.newAliases.push({
									"edit-alias.name": n.value,
									"edit-alias.sort_name": sn.value.length>0?sn.value:n.value,
									"edit-alias.type_id": t.value,
									"edit-alias.primary_for_locale": p.checked?"1":"0",
									"edit-alias.locale": l.value,
								});
								joblist.push("alias-add");
							}
						}
					}
					if (joblist.length > 1 || joblist.length == 1 && joblist[0] != "work-create/edit") {
						stop(e);
						scrollTo(0, 0);
						disable(this, true);
						xhrMachine();
					}
				}, false);
				xhrForm.submit = xhrForm.form.querySelector("div.row button.submit.positive[type='submit']");
				xhrForm.submit.parentNode.insertBefore(createTag("input", {"type":"reset","value":"Reset","title":"reset form values","tabindex":"-1"}, {"float":"left","font-size":".77em","height":"16px","width":"32px","margin":"0 8px","border":"1px solid #ccc"}), xhrForm.submit);
				xhrForm.originalInputs = {inputs:[], values:[], css:"form > div > fieldset:not(."+userjs+") input:not([type='button']), form > div > fieldset:not(."+userjs+") select"};
				xhrForm.originalInputs.inputs = xhrForm.form.querySelectorAll(xhrForm.originalInputs.css);
				for (var i=0; i<xhrForm.originalInputs.inputs.length; i++) {
console.log(i+"("+xhrForm.originalInputs.inputs.length+")\n*"+xhrForm.originalInputs.inputs[i].outerHTML+"*\n-------------------\n#"+xhrForm.originalInputs.inputs[i].value+"#");
					xhrForm.originalInputs.values.push(xhrForm.originalInputs.inputs[i].value);
				}
				var icomment = document.getElementById("id-edit-work.comment");
				var stypeid = document.getElementById("id-edit-work.type_id");
				var slangid = document.getElementById("id-edit-work.language_id");
				var teditnote = document.getElementById("id-edit-work.edit_note");
				if (document.referrer.match(/jasrac\.or\.jp/) && (sakuhin = teditnote.value.match(new RegExp("^(.+) \\(work code '''("+reCode+")'''")))) {
					iname.value = sakuhin[1];
					xhrWork.code = sakuhin[2];
					var err = iname.parentNode.querySelector("ul.errors li");
					if (err && err.textContent.match(/name field is required/i)) {
						err.replaceChild(document.createTextNode("Please review work name and everything else before submitting this work"), err.firstChild);
					}
					workSortName(teditnote.value);
					workCredits(teditnote.value);
				}
				iname.addEventListener("focus", function(e){ this.style.background = ""; }, false);
				icomment.addEventListener("focus", function(e){ this.style.background = ""; }, false);
				stypeid.addEventListener("focus", function(e){ this.style.background = ""; }, false);
				stypeid.style.width = "260px";
				stypeid.parentNode.appendChild(createButtor(vocal));
				stypeid.parentNode.appendChild(createButtor(instrumental));
				slangid.style.setProperty("width", "260px");
				slangid.parentNode.appendChild(createButtol("日", 198));
				slangid.parentNode.appendChild(createButtol("EN", 120));
				teditnote.parentNode.appendChild(document.createElement("br"));
				var tjasrac = document.querySelector("div.workheader p.subheader") || document.querySelector("h1");
				tjasrac = tjasrac.appendChild(createTag("textarea", {"placeholder":"Paste JASRAC summary here"}));
				addAfter(document.createTextNode(" ← Hover and paste JASRAC summary here for some magic :)"), tjasrac);
				tjasrac.setAttribute("tabindex", "-1");
				tjasrac.setAttribute("rows", "1");
				tjasrac.style.overflow = "hidden";
				tjasrac.addEventListener("mouseover", function(e) {
					if (document.activeElement != this) { xhrForm.lastinput = document.activeElement; }
					this.blur();
					this.focus();
				}, false);
				tjasrac.addEventListener("focus", function(e) {
					this.setAttribute("rows", "4");
					this.select();
				}, false);
				tjasrac.addEventListener("mouseout", function(e) {
					this.setAttribute("rows", "1");
					if (xhrForm.lastinput && xhrForm.lastinput.focus) { xhrForm.lastinput.focus(); }
				}, false);
				tjasrac.addEventListener("keyup", function(e) {
					var sakuhinCode = this.value.match(new RegExp("work code '''("+reCode+")'''"));
					if (sakuhinCode && this.value.indexOf(hasCredits) != -1) {
						sakuhinCode = sakuhinCode[1];
						xhrWork.code = sakuhinCode;
						var sakuhin = this.value.match(/^(.+) \(work code/)[1];
						if (sakuhin == iname.value) { iname.style.background = cOK; }
						else if (iname.value.match(new RegExp(sakuhin, "i"))) { iname.style.background = cWARN; }
						else { iname.style.background = cERR; }
						var workattrCSS = "form > div > fieldset > table#work-attributes";
						var workattrTypeCSS = "select";
						var workattrValueCSS = "input[type='text'][name$='.value']";
						var workattr = xhrForm.form.querySelectorAll(workattrCSS+" > tbody > tr");
						for (var wa=0; wa<workattr.length-1; wa++) {
							var type = workattr[wa].querySelector(workattrTypeCSS);
							var value = workattr[wa].querySelector(workattrValueCSS);
							if (type && value && type.value == "3" && value.value == xhrWork.code) {
								xhrWork.jasracidmatch = value;
								break;
							}
						}
						if (xhrWork.jasracidmatch) { xhrWork.jasracidmatch.style.background = cOK; }
						else if (workattr.length > 1 && workattr[workattr.length-2].querySelector(workattrValueCSS) && workattr[workattr.length-2].querySelector(workattrValueCSS).value == "") {
							workattr[workattr.length-2].querySelector(workattrTypeCSS).value = "3";
							workattr[workattr.length-2].querySelector(workattrValueCSS).value = xhrWork.code;
							workattr[workattr.length-2].querySelector(workattrValueCSS).style.background = cWARN;
						}
						else {
							xhrForm.form.querySelector(workattrCSS+" button.add-item").click();
							var jasracidnew = xhrForm.form.querySelectorAll(workattrCSS+" > tbody > tr")[workattr.length-1];
							jasracidnew.querySelector(workattrTypeCSS).value = "3";
							jasracidnew.querySelector(workattrValueCSS).style.background = cWARN;
							jasracidnew.querySelector(workattrValueCSS).value = xhrWork.code;
						}
						var iswc = this.value.match(/— ISWC '''(T-[0-9]{3}\.[0-9]{3}.[0-9]{3}-[0-9])'''/);/*reISWC when MBS-4727 fixed*/
						var insel = "form.edit-work div.form-row-text-list div.text-list-row input.value[name^='edit-work.iswcs.']";
						var iiswcs = document.querySelectorAll(insel);
						if (iiswcs.length > 0 && iswc) { /*MBS-4727*/
							iswc = iswc[1];
							var iiswcm;
							for (var im=0; im<iiswcs.length; im++) {
								if (iiswcs[im].value == iswc) {
									iiswcm = iiswcs[im];
									break;
								}
							}
							if (iiswcm) { iiswcm.style.background = cOK; }
							else if (iiswcs[iiswcs.length-1].value == "") {
								iiswcs[iiswcs.length-1].value = iswc;
								iiswcs[iiswcs.length-1].style.background = cWARN;
							}
							else {
								document.querySelector("form.edit-work div.form-row-text-list div.form-row-add button.nobutton.add").click();
								var iswcn = document.querySelectorAll(insel)[iiswcs.length];
								iswcn.style.background = cWARN;
								iswcn.value = iswc;
							}
						}
						setType(this.value.indexOf(hasLyrics)!=-1?vocal:instrumental);
						workSortName(this.value);
						workCredits(this.value);
						teditnote.value = this.value;
						this.style.background = cOK;
						this.value = xhrWork.code+" "+sakuhin;
					}
					else {
						icomment.style.background = "";
						stypeid.style.background = "";
						this.style.background = cERR;
					}
					scrollTo(0, 0);
				}, false);
				break;
			default:
				return false;
		}
	}
	function MBlinks() {
		return (xhrWork.id&&self.location.href.match(/work\/create$/)?"MB add work edit: "+MBS+"/search/edits?combinator=and&conditions.0.field=work&conditions.0.operator=%3D&conditions.0.name="+(iname.value?encodeURIComponent(iname.value):"TA+GUEULE")+"&conditions.0.args.0="+xhrWork.id[1]+"&conditions.1.field=type&conditions.1.operator=%3D&conditions.1.args=41\n":"")+"MB work edit history: "+MBS+"/work/"+xhrWork.mbid+"/edits";
	}
	function workSortName(txt) {
		var sortname = txt.match(/(.+) \(''yomikata''\)/);
		var searchint = txt.match(/(.+) \(latin\)/);
		var alrows = [];
		var aldone = [];
		if (sortname) {
			alrows.push({"name":iname.value,"sort-name":sortname[1],"type":"1","locale":"ja","primary":"1"});
			aldone.push(iname.value);
			aldone.push(sortname[1]);
		}
		if (searchint) {
			searchint = swapTHE(searchint[1], true);
			alrows.push({"name":searchint, "sort-name":searchint, "type":"2"});
			aldone.push(searchint);
		}
		var aliases = txt.substring(txt.indexOf("ALIASES/SUBTITLES/SEARCHES/TRANSLATIONS")).split("\n");
		for (var al=1; al<aliases.length && aliases[al].match(/^.*◇.*◇.*$/); al++) {
			var alias = fixSTR(aliases[al]).split("◇");
			if (alias[0].length > 0 && !alias[1].match(/^[--]?$/)) {
				alrows.push({"name":alias[0],"sort-name":alias[1],"type":"1","locale":"ja"});
				if (alias[2].length > 0) {
					var swapped = swapTHE(alias[2], true);
					alrows.push({"name":swapped, "sort-name":swapped, "type":"2"});
					aldone.push(swapped);
				}
			}
			else {
				for (var a=0; a<3; a++) {
					var swapped = swapTHE(alias[a], true);
					if (!alias[a].match(/^[--]?$/) && aldone.indexOf(swapped) == -1) {
						alrows.push({"name":swapped,"sort-name":swapTHE(alias[a], false)});
						aldone.push(swapped);
					}
				}
			}
		}
		if (alrows.length > 0) { aliasTable(alrows, true); }
	}
	function workCredits(txt) {
		var wcs = document.getElementById(userjs+"wcs");
		if (!wcs) {
			wcs = addAfter(createTag("fieldset", {"class":userjs}, {}, {}, [createTag("legend", {}, {}, {}, "Relationships"), createTag("p", {}, {}, {}, [createTag("b", null, null, null, "JASRAC sometimes has wrong credits")," so, please double-check with your booklet then only lookup for the correct relationship(s) you want to create.", createTag("br"), "If you change your mind and want to un-lookup one of them, just select and clear the text field.", createTag("br"), "Only green fields will queue relationship edits."]), createTag("div", {"id":userjs+"wcs"})]), xhrForm.form.querySelector("form > div > fieldset")).querySelector("div#"+userjs+"wcs");
		}
		removeChildren(wcs);
		try { jQuery; } catch (e) {
			wcs.parentNode.appendChild(createTag("p", {}, {color:"red"}, {}, e.message+" — “Credits inline searches” can’t work. "+chrome));
			return;
		}
		workCredit("artist", {
			"作詞":{"nomatch":/^権利者 /,"english":"lyrics","ar.link_type_id":"165"},
			"訳詞":{"nomatch":/^権利者 /,"english":"translate lyrics","ar.link_type_id":"165","ar.attrs.translated":"1"},
			"補詞":{"nomatch":/^権利者 /,"english":"additional lyrics","ar.link_type_id":"165","ar.attrs.additional":"1"},
			"作曲":{"nomatch":/^権利者 /,"english":"compose","ar.link_type_id":"168"},
			"作曲作詞":[{"english":"generic write","ar.link_type_id":"167"},{"english":"compose","ar.link_type_id":"168"},{"english":"lyrics","ar.link_type_id":"165"}],
		}, txt, wcs);
		workCredit("label", {
			"作詞":{"match":/^権利者 (.+)$/,"english":"publish","ar.link_type_id":"208"},
			"訳詞":{"match":/^権利者 (.+)$/,"english":"publish","ar.link_type_id":"208"},
			"補詞":{"match":/^権利者 (.+)$/,"english":"publish","ar.link_type_id":"208"},
			"作曲":{"match":/^権利者 ㈱?(.+)$/,"english":"publish","ar.link_type_id":"208"},
			"出版者":{"english":"publish","ar.link_type_id":"208"},
			"サブ出版":{"english":"sub-publish","ar.link_type_id":"208"},
		}, txt, wcs);
	}
	function workCredit(enttype, credtypes, source, pTarget) {
		var i = pTarget.querySelectorAll("a[title^='reset'][ref]");
		i = i.length>0?parseInt(i[i.length-1].getAttribute("ref"),10)+1:0;
		for (var credtype in credtypes) { if (credtypes.hasOwnProperty(credtype)) {
			var ctype = credtypes[credtype].english?[credtypes[credtype]]:credtypes[credtype];
			var cont = pTarget;
			for (var c=0; c<ctype.length; c++) {
				var credit, credits = new RegExp("^"+credtype+":([^\u00a0]+)(?:\u00a0(.+))?$", "igm");
				while (credit = credits.exec(source)) {
					if (cont.tagName != "FIELDSET" && ctype.length > 1) { cont = cont.appendChild(createTag("fieldset",{"class":userjs},{},{},[createTag("legend",{},{},{},"choose either")])); }
					credit = credit[1].trim();
					if (credtypes[credtype].nomatch && credit.match(credtypes[credtype].nomatch)) continue;
					if (credtypes[credtype].match) if (credit = credit.match(credtypes[credtype].match)) credit = credit[1]; else continue;
					var ilookupid = userjs+"ilookup"+i;
					var target = cont.appendChild(createTag("div", {"class":"row","title":credit}));
					target.appendChild(createTag("label", {"for":ilookupid}, {}, {}, ctype[c].english+":"));
					target.appendChild(createTag("a", {"title":"reset\r\n"+credit,"ref":i}, {"cursor":"pointer"}, {"click":function(e){
						MBlookups[this.getAttribute("ref")].clear(true);
					}}, "× "));
					var jQac = jQuery(target.appendChild(createTag("span", {"class":enttype+" autocomplete"+(ctype.length==1||c>0?"":" "+userjs+"manu"),"ref":enttype}, {}, {}, [
						createTag("img", {"src":"/static/images/icons/search.png","class":"search","alt":"search"}),
						createTag("input", {"type":"text","class":"name","id":ilookupid,"ref":credit}, {"width":"150px"}),
						createTag("input", {"type":"hidden","class":"id"}),
						createTag("input", {"type":"hidden","class":"gid"}),
					])));
					MBlookups.push(MB.Control.EntityAutocomplete({"inputs":jQac}));
					MBlookups[MBlookups.length-1].indexedSearch = false;
					target.querySelector("input.name").value = credit;
					jQac.bind("lookup-performed", function(e) {
						var remember = xhrForm.form.querySelector("fieldset.editnote label input.jesus2099remember[type='checkbox']");
						if (remember && remember.checked) { remember.click(); }
						var name = this.querySelector("input.name");
						var gidv = this.querySelector("input.gid").value;
						var href = "/"+this.getAttribute("ref")+"/"+gidv;
						var rla = this.nextSibling;
						if (rla && rla.tagName == "A") {
							rla.setAttribute("href", href);
							rla.replaceChild(document.createTextNode(name.value), rla.firstChild);
						} else { addAfter(createA(name.value, href, null, "_blank"), this).style.setProperty("white-space", "nowrap"); }
					});
					if (ctype.length == 1 || c > 0) {
						jQac.bind("lookup-performed", function(e) {
							var name = this.querySelector("input.name");
							var gidv = this.querySelector("input.gid").value;
							var others = document.querySelectorAll("div#"+userjs+"wcs span.autocomplete");
							for (var ot=0; ot<others.length; ot++) {
								if (others[ot].className.indexOf(userjs+"manu") < 0 && others[ot].querySelector("input.name").getAttribute("ref") == name.getAttribute("ref") && !others[ot].querySelector("input.name").className.match(/lookup-performed/)) {
									MBlookups[ot].options.select(document.createEvent("HTMLEvents"), {"item":{"name":name.value, "id":this.querySelector("input.id").value, "gid":gidv}});
								}
							}
						});
					}
					jQac.bind("cleared", function(e) {
						var acname = this.querySelector("input.name");
						acname.value = acname.getAttribute("ref");
						if (this.nextSibling.tagName == "A") {
							this.parentNode.removeChild(this.nextSibling);
						}
					});
					for (var wap in ctype[c]) { if (wap != "english" && ctype[c].hasOwnProperty(wap)) {
						target.appendChild(createTag("input", {"type":"hidden","name":wap,"value":ctype[c][wap]}));
					} }
					target.appendChild(document.createTextNode(" "+credtype));
					target.appendChild(createTag("br"));
					i++;
				}
			}
		} }
	}
	function disable(w, dis) {
		var inputs = w.querySelectorAll("input, select, textarea, button");
		var len = inputs.length;
		if ((len) && len > 0) {
			for (var i=0; i < len; i++) {
				if (dis) { inputs[i].setAttribute("disabled", "disabled"); }
				else { inputs[i].removeAttribute("disabled"); }
			}
			return true;
		} else { return false; }
	}
	function stop(e) {
		e.cancelBubble = true;
		if (e.stopPropagation) e.stopPropagation();
		e.preventDefault();
		return false;
	}
	function getExtLinks() {
		var el = document.querySelector("div#sidebar > ul.external_links");
		var sb, lu, lis;
		if (el) {
			var lis = el.getElementsByTagName("li");
			if (lis.length == 1 && lis[0].textContent.match(/has no url relationships/i)) {
				el.removeChild(lis[0]);
			}
		}
		else if (!el && (sb = document.querySelector("div#sidebar"))) {
			var lu = sb.querySelector("div#sidebar > p.lastupdate");
			if (lu) { lu = lu.previousSibling; }
			else { lu = sb.lastChild; }
			el = addAfter(createTag("ul", {"class":"external_links"}), lu);
			addAfter(createTag("h2", {}, {}, {}, "External links"), lu);
		}
		return el;
	}
	/*bug I reported DSK-376978, opera adds a "; charset=accept-charset" to the POST Content-Type header: "Content-Type: application/x-www-form-urlencoded; charset=shift_jis"
	workaround here, using multipart/form-data accepted by JASRAC (unlike GET)*/
	function jasracSearch(type, query) {
		var formJASRAC = createTag("form", {"action":"http://www2.jasrac.or.jp/eJwid/main.jsp?trxID=A00401-3", "method":"post", "accept-charset":"Shift_JIS", "enctype":"multipart/form-data"}, {"display":"inline", "background":background});
		formJASRAC.appendChild(createTag("input", {"type":"hidden", "name":"IN_DEFAULT_WORKS_KOUHO_MAX", "value":"100"}));
		formJASRAC.appendChild(createTag("input", {"type":"hidden", "name":"IN_DEFAULT_WORKS_KOUHO_SEQ", "value":"1"}));
		switch (type) {
			case "title":
				formJASRAC.appendChild(createTag("input", {"type":"hidden", "name":"IN_WORKS_TITLE_NAME1", "value":nameConform(query)}));
				break;
		}
		formJASRAC.appendChild(createTag("input", {"type":"hidden", "name":"IN_DEFAULT_SEARCH_WORKS_NAIGAI", "value":"0"}));
		formJASRAC.appendChild(createTag("input", {"type":"hidden", "name":"RESULT_CURRENT_PAGE", "value":"1"}));
		formJASRAC.appendChild(createCoolSubmit("JASRAC — "+query));
		return formJASRAC;
		
	}
	/*workaround here, using GET accepted by MINC (unlike multipart)*//*TOTO since minc is now utf-8, see what can be dumped here*/
	function mincSearch(type, query) {
		var formMINC = createTag("form", {"action":"https://www.minc.gr.jp/db/SakCdInfo.aspx", "method":"get", "accept-charset":"utf-8"}, {"display":"inline", "background":background});
		formMINC.appendChild(createTag("input", {"type":"hidden", "name":"DATATYPE", "value":"2"}));
		switch (type) {
			case "title":
				formMINC.appendChild(createTag("input", {"type":"hidden", "name":"GTITLE", "value": nameConform(query)}));
				formMINC.appendChild(createTag("input", {"type":"hidden", "name":"SAKUSINM", "value": ""}));
				formMINC.appendChild(createTag("input", {"type":"hidden", "name":"ARTNAME", "value": ""}));
				break;
		}
		formMINC.appendChild(createTag("input", {"type":"hidden", "name":"SRCHTYPE", "value":"2"}));
		formMINC.appendChild(createCoolSubmit("音楽の森 — "+query));
		return formMINC;
		
	}
	function nameConform(n) {
		return hw2fw(n.toUpperCase().replace(/^(A|THE|UN|UNE|L) (.+)$/, "$2 $1"));
	}
	function swapTHE(n, swap) {
		return fw2hw(n.replace(/^(.+)\s{2}(A|THE|UN|UNE|L)$/i, swap?"$2 $1":"$1, $2")).replace(/\w\(/g, " (").replace(/\)\w/g, ") ").trim();
	}
	function toCamelCase(s) {
		return s.toLowerCase().replace(/\b(.)/g, function($1) { return $1.toUpperCase(); });
	}
	function setType(type) {
		switch (type.toLowerCase()) {
			case vocal.toLowerCase():
				if (stypeid.value == 17) { stypeid.style.background = cOK; }
				else {
					stypeid.style.background = cWARN;
					stypeid.value = 17;
				}
				if (slangid.value != 486) { slangid.style.background = cOK; }
				else {
					slangid.style.background = cWARN;
					slangid.selectedIndex = 0;
				}
				break;
			case instrumental.toLowerCase():
				if (stypeid.selectedIndex == 0) { stypeid.style.background = cOK; }
				else {
					stypeid.style.background = cWARN;
					stypeid.selectedIndex = 0;
				}
				if (slangid.value == 486) { slangid.style.background = cOK; }
				else {
					slangid.style.background = cWARN;
					slangid.value = 486;
				}
				break;
		}
		stypeid.focus();
	}
	function workLookupURL(db, type, q) {
		switch (db) {
			case "mb": switch (type) {
				case "name": return "https://musicbrainz.org/search?type=work&limit=100&query="+encodeURIComponent(q);
				case "code": return "https://musicbrainz.org/search?type=annotation&limit=100&method=advanced&query=type%3Awork+AND+text%3A"+q;
				case "iswc": return "https://musicbrainz.org/search?type=work&limit=100&method=advanced&query=iswc%3A"+q;
			}
			case "jasrac": switch (type) {
				case "name": return "http://www2.jasrac.or.jp/eJwid/main.jsp?trxID=A00401-3&IN_DEFAULT_WORKS_KOUHO_MAX=100&IN_DEFAULT_WORKS_KOUHO_SEQ=1&IN_WORKS_TITLE_NAME1="+q+"&IN_DEFAULT_SEARCH_WORKS_NAIGAI=0&RESULT_CURRENT_PAGE=1";
				case "code": return "http://www2.jasrac.or.jp/eJwid/main.jsp?trxID=F20101&WORKS_CD="+q.replace(/-/g, "")+"&subSessionID=001&subSession=start";
				case "iswc": return "http://www2.jasrac.or.jp/eJwid/main.jsp?trxID=A00401-3&IN_DEFAULT_WORKS_KOUHO_MAX=100&IN_DEFAULT_WORKS_KOUHO_SEQ=1&IN_ISWC="+q.replace(/ /, "+")+"&IN_DEFAULT_SEARCH_WORKS_NAIGAI=0&RESULT_CURRENT_PAGE=1";
			}
			case "minc": switch (type) {
				case "code": return "https://www.minc.gr.jp/db/SakCdInfo.aspx?SAKUHINCD="+q.replace(/-/g, "");
			}
		}
	}
	function aliasTable(add, clear) {
		var alta = document.getElementById(userjs+"alta");
		if (!alta) {
			alta = addAfter(createTag("fieldset", {"class":userjs}, null, null, [createTag("legend", {}, {}, {}, "Aliases"), createTag("p", null, null, null, "You can add some aliases including (but not limited to) the default work sort-name and a latin search-hint. The JASRAC readings are almost always already cool. Sometimes you may fix few ツ→ッ but it’s rare. You can visually check the existing aliases."), createTag("table", {"id":userjs+"alta"}, null, null, [
				createTag("thead", null, null, null, createTag("tr", null, null, null, [createTag("th", null, null, null, "Name"), createTag("th", null, null, null, "Sort name"), createTag("th", null, null, null, "Type"), createTag("th", null, null, null, "Locale"), createTag("th", null, null, null, "Add?")])), 
				document.createElement("tfoot"), document.createElement("tbody")
			])]), xhrForm.form.querySelector("form > div > fieldset")).querySelector("table#"+userjs+"alta");
		}
		var aliases = add?add:xhrWork.aliases;
		var cont = alta.getElementsByTagName(add?"tfoot":"tbody")[0];
		if (clear || !add) {
			var headr = createTag("tr", null, null, null, createTag("th", {"colspan":5}, {"border-top":"1px solid black","color":"#666"}));
			if (clear) {
				removeChildren(cont);
				var th = cont.appendChild(headr).firstChild;
				th.appendChild(document.createTextNode("Alias suggestions ("));
				th.appendChild(createTag("a", null, {"cursor":"pointer"}, {"click":function(e){
					aliasTable([{"name":""}]);
				}}, "add another alias"));
				th.appendChild(document.createTextNode(")"));
			}
			else if (!add) {
				cont.appendChild(headr).firstChild.appendChild(createA((aliases.length>0?aliases.length:"no")+" existing aliase"+(aliases.length!=1?"s":""), "/work/"+xhrWork.mbid+"/aliases", "Work aliases page", "_blank"));
			}
		}
		for (var a=0; a<aliases.length; a++) {
			var tr = cont.appendChild(document.createElement("tr"));
			if (!add && a%2==0) { tr.style.setProperty("background-color", "#f2f2f2"); }
			var td = tr.appendChild(createTag("td", null, null, null, add?createTag("input", {"name":"edit-alias.name","value":aliases[a].name,"title":aliases[a].name}, {"width":"10em"}):aliases[a].name));
			if (add || aliases[a].name != aliases[a]["sort-name"]) {
				tr.appendChild(createTag("td", null, null, null, add?createTag("input", {"name":"edit-alias.sort_name","value":aliases[a]["sort-name"]?aliases[a]["sort-name"]:""}, {"width":"10em"}):aliases[a]["sort-name"]));
			}
			else {
				td.setAttribute("colspan", "2");
			}
			var se = tr.appendChild(createTag("td", null, null, null, add?createTag("select", {"name":"edit-alias.type_id"}, {"width":"8em"}, {"change":function(e){
				var inps = this.parentNode.parentNode.querySelectorAll("input:not(."+userjs+"addit)");
				for (var i=0; i<inps.length; i++) {
					if (i < 2) { inps[i].value = (this.value=="1"&&inps[2].value=="en"?toCamelCase(inps[i].value):inps[i].value.toUpperCase()); }
					if (i > 0) { inps[i].disabled = this.value=="2"?true:false; }
				}
			}}, [createTag("option", null, null, null, " "), createTag("option", {"value":"1"}, null, null, "work name"), createTag("option", {"value":"2"}, null, null, "search hint")]):(aliases[a].type?aliases[a].type.toLowerCase():""))).querySelector("select");
			td = tr.appendChild(createTag("td", null, null, null, add?createTag("input", {"name":"edit-alias.locale","value":(aliases[a].locale?aliases[a].locale:"")}, {"width":"3em"}, {"keyup":function(e){
				var lang = this.value.match(/^$|^en$/);
				if (lang && e.keyCode != 9) {
					var titles = this.parentNode.parentNode.querySelectorAll("input[name^='edit-alias.'][name$='name']");
					for (var t=0; t<titles.length; t++) {
						titles[t].value = lang=="en"?toCamelCase(titles[t].value):titles[t].value.toUpperCase();
					}
				}
			}}):(aliases[a].locale?aliases[a].locale:"")));
			if (add) {
				var cb = td.appendChild(createTag("input", {"name":"edit-alias.primary_for_locale","value":"1","type":"checkbox","title":"primary"}));
				if (aliases[a].primary) {
					cb.checked = true;/*for display*/
					cb.setAttribute("checked", "checked");/*for reset*/
				}
			}
			else if (aliases[a].primary) {
				td.replaceChild(document.createTextNode("primary "+td.textContent), td.firstChild);
				td.setAttribute("title", "primary");
			}
			tr.appendChild(createTag("td", null, null, null, add?createTag("input", {"type":"checkbox","title":"add this work alias?","class":userjs+"addit"}):""));
			if (se) {/*se is the work type <select>*/
				if (aliases[a].type) {
					se.value = aliases[a].type;
					sendEvent(se, "change");
					se.querySelector("option[value='"+aliases[a].type+"']").setAttribute("selected", "selected");/*for reset*/
				}
				se.addEventListener("change", function(e){
					var addit = this.parentNode.parentNode.querySelector("input."+userjs+"addit");
					if (!addit.checked) addit.click();
					if (this.value == "1") { this.parentNode.nextSibling.firstChild.focus(); }
				}, false);
				xhrForm.form.addEventListener("reset", function(e){
					var ops = document.querySelectorAll("#"+userjs+"alta select option[selected]");
					for (var o=0; o<ops.length; o++) {
						ops[o].parentNode.value = ops[o].value;
						sendEvent(ops[o].parentNode, "change");
					}
				}, false);
				if (!xhrWork.edit && a < 2 && !(aliases[a].type == "2" && aliases[a].name == iname.value)) {
					getParent(se, "tr").querySelector("input."+userjs+"addit[type='checkbox']").click();
				}
				var wname = tr.querySelector("input[name='edit-alias.name']");
				var wsname = tr.querySelector("input[name='edit-alias.sort_name']");
				var wnameaddit = tr.querySelector("input."+userjs+"addit[type='checkbox']");
				if (clear && a == 0 && aliases[a].type == "1") {
					if (wname) {
						iname.addEventListener("keyup", function(e){
							var wname = document.querySelector("table#"+userjs+"alta > tfoot > tr > td > input[name='edit-alias.name']");
							var wnameaddit = document.querySelector("table#"+userjs+"alta > tfoot > tr > td > input."+userjs+"addit[type='checkbox']");
							if (wname) {
								if (this.value != wname.value && wnameaddit && wnameaddit.checked) { wnameaddit.click(); }
								wname.value = this.value;
							}
						}, false);
						wname.setAttribute("title", "work name is always used here");
						wname.setAttribute("readonly", "readonly");
					}
					addAfter(document.createTextNode(se.options[se.selectedIndex].textContent), se);
					se.parentNode.replaceChild(createTag("input", {"type":"hidden", "name":se.getAttribute("name"), "value":se.value}), se);
				}
				else if (!clear && add) {
					wname.focus();
					wnameaddit.click();
				}
				if (wname && wsname) {
					wname.setAttribute("ref", wname.value);
					wname.addEventListener("focus", function(e){
						this.setAttribute("ref", this.value);
					}, false);
					wname.addEventListener("keyup", function(e){
						var wsname = this.parentNode.nextSibling.firstChild;
						if (wsname.value == this.getAttribute("ref")) {
							wsname.value = this.value;
						}
						this.setAttribute("ref", this.value);
					}, false);
					if (wsname.value.length > 0) {
						wsname.setAttribute("title", wsname.value+(wsname.value==wname.value?"\n(=name)":""));
					}
				}
				if (aliases.length == 1 && aliases[a].name == "" && !wnameaddit.checked) { wnameaddit.click(); }/*OMG I’M LOST*/
			}
		}
		return alta;
	}
	function createA(text, link, title, tgt) {
		var a = document.createElement("a");
		a.style.background = background;
		a.setAttribute("target", tgt || "_self");
		if (typeof link == "string") { a.setAttribute("href", link); }
		else {
			a.style.setProperty("cursor", "pointer");
			a.addEventListener("click", link, false);
		}
		if (title) { a.setAttribute("title", title); }
		a.appendChild(document.createTextNode(text));
		return a;
	}
	function createCoolSubmit(txt) {
		var a = createA(txt, function(e) {
			if (e.button == 0) {
				/*lame browsers;)*/
				if (typeof opera == "undefined") {
					if (e.shiftKey) {
						this.parentNode.setAttribute("target", "_blank");
					} else if (e.ctrlKey) {
						this.parentNode.setAttribute("target", weirdobg());
					}
				}
				this.parentNode.submit();
			}
		});
		a.addEventListener("mousedown", function (e) {
			e.preventDefault();
			if (e.button == 1) {
				this.parentNode.setAttribute("target", weirdobg());
				this.parentNode.submit();
			}
		}, false);
		return a;
	}
	function weirdobg() {
		var weirdo = userjs+(new Date().getTime());
		try { self.open("", weirdo).blur(); } catch(e) {}
		self.focus();
		return weirdo;
	}
	function createButtor(type) {
		return createTag("input", {"type":"button", "value":type.charAt(0).toUpperCase(), "title":type, "tabindex":"-1"}, {"width":"10px", "padding": "1px 8px"}, {"click":function(e){
			setType(this.getAttribute("title"));
		}});
	}
	function createButtol(txt, val) {
		return createTag("input", {"type":"button", "value":txt, "title":val, "tabindex":"-1"}, {"width":"10px", "padding": "1px 8px"}, {"click":function(e){
			var slang;
			var title = this.getAttribute("title");
			if (title && title.length > 0 && (slang = getSibling(this, "select", null, true))) {
				slang.value = this.getAttribute("title");
				slang.focus();
			}
		}});
	}
	function isAutoEdit() {
		var ae = xhrForm.form.querySelector("div.auto-editor > input[type='checkbox'][name='edit-work.as_auto_editor']");
		return (ae && ae.checked);
	}
	function trim(s) {
		return s.replace(/^\s\s*/, "").replace(/\s\s*$/, "");
	}
	function removeChildren(p) {
		while (p && p.hasChildNodes()) { p.removeChild(p.firstChild); }
	}
	function addAfter(n, e) {
		if (n && e && e.parentNode) {
			if (e.nextSibling) { return e.parentNode.insertBefore(n, e.nextSibling); }
			else { return e.parentNode.appendChild(n); }
		} else { return null; }
	}
	function createTag(tag, attribs, styles, events, children) {
		var t = document.createElement(tag);
		if(t.tagName) {
			for (var attr in attribs) { if (attribs.hasOwnProperty(attr)) { t.setAttribute(attr, attribs[attr]); } }
			for (var styl in styles) { if (styles.hasOwnProperty(styl)) { t.style.setProperty(styl, styles[styl], "important"); } }
			for (var evt in events) { if (events.hasOwnProperty(evt)) { t.addEventListener(evt, events[evt], false); } }
			if (children) { var chldrn = children; if (typeof chldrn == "string" || chldrn.tagName) { chldrn = [chldrn]; } for(var child=0; child<chldrn.length; child++) { t.appendChild(typeof chldrn[child]=="string"?document.createTextNode(chldrn[child]):chldrn[child]); } }
		}
		return t;
	}
	function getParent(obj, tag, cls) {
		var cur = obj;
		if (cur.parentNode) {
			cur = cur.parentNode;
			if (cur.tagName == tag.toUpperCase() && (!cls || cls && cur.className.match(new RegExp("\\W*"+cls+"\\W*")))) {
				return cur;
			} else {
				return getParent(cur, tag, cls);
			}
		} else {
			return null;
		}
	}
	function getSibling(obj, tag, cls, prev) {
		var cur = obj;
		if (cur = prev?cur.previousSibling:cur.nextSibling) {
			if (cur.tagName == tag.toUpperCase() && (!cls || cls && cur.className.match(new RegExp("\\W*"+cls+"\\W*")))) {
				return cur;
			} else {
				return getSibling(cur, tag, cls, prev);
			}
		} else {
			return null;
		}
	}
	function fixSTR(s) {
		return s.replace(/(^|◇)[**]/g, "$1").replace(/~/g, "〜");
	}
	function fw2hw(s) {
		return s.replace(/[!-}]/g, function(a) {
			return String.fromCharCode(a.charCodeAt(0)-65248);
		}).replace(/\u3000/g, "\u0020").replace(/~/g, "〜");
	}
	function hw2fw(s) {
		return s.replace(/[!-}]/g, function(a) {
			return String.fromCharCode(a.charCodeAt(0)+65248);
		}).replace(/\u0020/g, "\u3000");
	}
	function d2h(d) { return d.toString(16); }
	function h2d(h) { return parseInt(h, 16); }
	function xhrMachine(_job) {
		var job;
		if (_job) { job = _job; }
		else {
			if (joblist.length > 0) {
				job = xhrJobs[joblist.shift()];
			}
			else if (xhrWork.mbid) {
				self.location.href = "/work/"+xhrWork.mbid;
				return;
			}
			else {
				alert("MAXI ERROR NO MBID (OMG BBQ WTF?)\nMaybe reload everything and try again…");
				disable(xhrForm.form, false);
				return;
			}
		}
		var xhr = new XMLHttpRequest();
		var async = (typeof job.async=="boolean"?job.async:true);
		if (job.onreadystatechange) { xhr.onreadystatechange = job.onreadystatechange; }
		if (job.onload) { xhr.onload = job.onload; }
		else if (!async) { xhr.onload = function(e) { xhrMachine(); }; async = true; }
		if (job.onerror) { xhr.onerror = job.onerror; }
		if (job.init) { job.init(xhr); }
		if (!job.ninja) document.title = "⌛ "+(job.info?job.info:"loading");
		if (h1) {
			if (h1.textContent.trim().match(/add work/i)) { removeChildren(h1); }
			h1.appendChild(createTag("div", {}, {}, {}, " "+document.title.replace(/ /g, "\u00a0")));
		}
		xhr.open(job.method?job.method:"get", job.url, async);
		if (job.params) {
			xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
			xhr.setRequestHeader("Content-length", job.params.length);
			xhr.setRequestHeader("Connection", "close");
		}
		if (DEBUG) console.log(job.info+"\n"+job.url+"\n"+(job.params?job.params.replace(/&/g, "\n"):""));
		xhr.send(job.params);
		if (!async) { xhrMachine(); }
	}
	function removeChildren(p) {
		while (p && p.hasChildNodes()) { p.removeChild(p.firstChild); }
	}
	function sendEvent(n, e) {
		var ev = document.createEvent("HTMLEvents");
		ev.initEvent(e, true, true);
		n.dispatchEvent(ev);
	}
})();