// FCMS-Generated

/*-------taglink-------*/

	var tl_data = Array();




function TagLink(root) {
	var str = String();
	var elm = null;
	for(node in root.childNodes) {
		str = String(root.childNodes[node].nodeValue);
		str0 = str;
		if (root.childNodes[node].tagName=="A") continue;
		for(i in tl_data)
			str = str.replace(tl_data[i][0], "<a href='"+tl_data[i][2]+"'>"+tl_data[i][1]+"</a>");
		if (str0!=str) {
			elm = document.createElement("span");
			elm.innerHTML = str;
			if (root.childNodes[node].nextSibling) {
				root.childNodes[node].parentNode.insertBefore(elm,root.childNodes[node].nextSibling)
				root.childNodes[node].parentNode.removeChild(root.childNodes[node]);
			} else {
				root.childNodes[node].parentNode.appendChild(elm);
				root.childNodes[node].parentNode.removeChild(root.childNodes[node]);
			}
		}
		TagLink(root.childNodes[node]);
	}
}