/*
 * File Name   : editor.js
 * Author      : hyunts
 * Date        : 2007. 04. 18.
 * Copyright   : Copyright NCSoft. All Rights Reserved.
 * Description : TBOARD's extension version
 */
var Selection = null;
var blImageAttach = false;

var verifyUrl = "/common/js/verify.js";
document.write('<script type="text/javascript" src="' + verifyUrl + '"></script>');

function setSelection() {
	if(isIE()) {
		Selection = htmlEditor.document.selection.createRange();
	}
	else {
		Selection = htmlEditor.document.createRange(htmlEditor.getSelection());
	}
}

function setFocus() {
	if(isIE()) {
		htmlEditor.document.body.focus();
	}
	else {
		htmlEditor.focus();
	}
}

function getSelectionRange() {
	setFocus();
	if(isIE()) {
		if(Selection == null) {
			htmlEditor.document.selection.createRange().select();
			return htmlEditor.document.selection.createRange();
		}
		else {
			Selection.select();
			return Selection;
		}
	}
	else {
		var sel = htmlEditor.getSelection();
		return htmlEditor.document.createRange(sel);
	}
}

function isIE() {
    var ua = navigator.userAgent.toLowerCase();
    return (ua.indexOf("msie") != -1) && (ua.indexOf("opera") == -1) && (ua.indexOf("webtv") == -1);
}

function initEditor(content) {
    var source = "<html><head><style>P {line-height:1.4; margin-top:2px;margin-bottom:2px;} table {border:1 solid C6C3C6}</style><script>function resizeImage(num){};</script></head><body bgcolor=#ffffff text=#000000 link=#6F93FF vlink=#6F93FF alink=#6F93FF></body></html>";

    htmlEditor.document.designMode="On";
    htmlEditor.document.open("text/html");
    htmlEditor.document.write(source);
    htmlEditor.document.close();

    htmlEditor.document.body.style.fontSize = "12pt";
    htmlEditor.document.body.style.fontFamily = "ＭＳ Ｐゴシック";

    htmlEditor.document.body.innerHTML = content;
	if(isIE()) {
	    htmlEditor.document.body.attachEvent("onclick", documentOnClick);
	    setFocus();;
		htmlEditor.document.body.attachEvent("onfocusout", setSelection);
	}
	else {
	    htmlEditor.addEventListener("click", documentOnClick, false);
		htmlEditor.addEventListener("focusout", setSelection, false);
	}
}

function setFont(fontName, objName) {
	setFocus();
	if(!isIE() && objName == 'BackColor') {
		objName = "hilitecolor";
	}
	htmlEditor.document.execCommand(objName, null, fontName);
	documentOnClick();
}

function insertImage(imageUrl, id) {

	if(imageUrl != null && imageUrl != '') {
		var thumbUrl = imageUrl.replace("/view/","/thumbnail/");
		window.parent.document.articleForm.thumbnail.value = thumbUrl;

		setFocus();
		var imageTag = "<p><img onclick=\"popView(this.src)\" src=\"" + imageUrl + "\" id=\"" + id + "\" onload=\"resizeImage(this)\" style=\"cursor:hand;cursor:pointer\"/></p>";
		insertHtml(imageTag);
	}
}

function insertImoticon(imageUrl) {
	if(imageUrl != null && imageUrl != '') {
		setFocus();
		var imageTag = "<img src=\"" + imageUrl + "\"/>";
		insertHtml(imageTag);
	}
}

function insertText(txt) {
	if(txt != null && txt != '') {
		setFocus();
		insertHtml(txt);
	}
}


function insertHtml(txt) {
	try{
		range = getSelectionRange();
		if(range.select)
			range.select();
		if(isIE()) {
			range.pasteHTML(txt);
		}
		else {
			htmlEditor.document.execCommand('insertHTML', false, txt);
		}
	}catch(e){}
}

function SetEditor(objName) {
	//setFocus();
	range = getSelectionRange();
	if (range != null && range.select) {
		range.select();
	}

	if (objName != "") {
		switch(objName) {
			case "Bold" :
			case "Underline" :
			case "Italic" :
			case "InsertOrderedList" :
			case "InsertUnorderedList" :
				htmlEditor.document.execCommand(objName);
				break;
			case "StrikeThrough" :
			case "JustifyLeft" :
			case "JustifyCenter" :
			case "JustifyRight" :
				htmlEditor.document.execCommand(objName);
				break;
			case "ForeColor" :
			case "BackColor" :
				ShowFontDiv(objName);
				break;
			case "Unlink" :
				if(isIE()) {
					setFocus();
					htmlEditor.document.execCommand("CreateLink", true);
				}
				else {
					setFocus();
					var URL = prompt("URLを入力してください:", "http://");
					textsel = htmlEditor.getSelection();

					if ((URL != null) && (URL != "")) {
						if (textsel == '') { textsel = prompt("字を入力してください:"); }
						if ((textsel != null) && (textsel != "")) {
							var html = '<a href="' + URL + '">' + textsel + '</a>';
							htmlEditor.document.execCommand('insertHTML', false, html);
						}
					}
				}
				break;
		}
	} else {
		alert('エディター機能を入力してください。');
		return;
	}
}


function Edit(objName, objValue) {
    if (Selection != null) {
        Selection.select();

		if ((objName != "") && (objValue != "")) {
			if (objName == "ForeColor")	{
				htmlEditor.document.execCommand(objName, false, objValue);
				document.all["DivFontColor"].style.display = "none";
				htmlEditor.document.selection.empty();

			} else if (objName = "BackColor") {
				htmlEditor.document.execCommand(objName, null, objValue);
				document.all["DivBGColor"].style.display = "none";
				htmlEditor.document.selection.empty();

			} else {
				htmlEditor.document.execCommand(objName, null, objValue);
			}
		}
	}
}

function EditContent() {
	var HtmlContent = htmlEditor.document.body.innerHTML;
	htmlEditor.document.body.createTextRange().execCommand("copy");
	return HtmlContent;
}


var oldEditorObj = "";
function viewObj(obj)
{
	//setFocus();
	if (oldEditorObj != obj && oldEditorObj != "") {
		document.getElementById(oldEditorObj).style.display = "none";
	}

	if(document.getElementById(obj).innerHTML == '') {
		eval("initializeHTML_" + obj + "()");
	}

	if(document.getElementById(obj).style.display == "block") {
		document.getElementById(obj).style.display = "none";
	} else {
		document.getElementById(obj).style.display = "block";
	}
	oldEditorObj = obj;
}

function documentOnClick() {
	// 해당 컨텐츠가 존재하는지 체크
	if(isIE()) {
		Selection = htmlEditor.document.selection.createRange();
	}

	if (document.getElementById("wrap_font_family") || document.getElementById("wrap_font_size") || document.getElementById("wrap_font_color") || document.getElementById("wrap_bg_color") ||
		document.getElementById("wrap_font_color_more") || document.getElementById("wrap_bg_color_more") || document.getElementById("wrap_emoticon") || document.getElementById("wrap_special_character"))
	{
		// 해당 컨텐츠가 디스플레이되었는지 체크
		if(
			document.getElementById("wrap_font_family").style.display == "block" ||
			document.getElementById("wrap_font_size").style.display == "block" ||
			document.getElementById("wrap_font_color").style.display == "block" ||
			document.getElementById("wrap_bg_color").style.display == "block" ||
			document.getElementById("wrap_font_color_more").style.display == "block" ||
			document.getElementById("wrap_bg_color_more").style.display == "block" ||
			document.getElementById("wrap_emoticon").style.display == "block" ||
			document.getElementById("wrap_special_character").style.display == "block"
		)
		{
			if(oldEditorObj != null && oldEditorObj != '')
				document.getElementById(oldEditorObj).style.display = "none";
		}
	}
}

function initializeHTML() {
	document.write(""
	+	"<div id=\"wrap_font_family\" class=\"wrap_font_style\" onclick=\"this.style.display='none'\">"
	+	"</div>"
	+	"<div id=\"wrap_font_size\" class=\"wrap_font_style\" onclick=\"this.style.display='none'\">"
	+	"</div>"
	+	"<div id=\"wrap_font_color\" class=\"wrap_font_style\">"
	+	"</div>"
	+	"<div id=\"wrap_bg_color\" class=\"wrap_font_style\">"
	+	"</div>"
	+ 	"<div id=\"wrap_font_color_more\" class=\"wrap_font_style\">"
	+	"</div>"
	+ 	"<div id=\"wrap_bg_color_more\" class=\"wrap_font_style\">"
	+	"</div>"
	+	"<div id=\"wrap_emoticon\" class=\"wrap_font_style\" onclick=\"this.style.display='none'\">"
	+	"</div>"
	+	"<div id=\"wrap_special_character\" class=\"wrap_font_style\" onclick=\"this.style.display='none'\">"
	+	"</div>");
	setVerifySession();
}
function initializeHTML_wrap_font_family() {
	document.getElementById("wrap_font_family").innerHTML = (""
	+	"<ul class=\"editor_ul_typeA\">"
	+	"<li><a href=\"/\" onclick=\"setFont('ＭＳ Ｐゴシック', 'FontName');return false;\" class=\"MS PGothic\">あいうえお (ＭＳ Ｐゴシック)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('ＭＳ ゴシック', 'FontName');return false;\" class=\"MS Gothic\">あいうえお (ＭＳ ゴシック)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('ＭＳ Ｐ明朝', 'FontName');return false;\" class=\"MS PMincho\">あいうえお (ＭＳ Ｐ明朝)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('ＭＳ 明朝', 'FontName');return false;\" class=\"MS Mincho\">あいうえお (ＭＳ 明朝)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('Arial', 'FontName');return false;\" class=\"arial\">ABCDEFGHIJKLM (Arial)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('Times New Roman', 'FontName');return false;\" class=\"times\">ABCDEFGHIJKLM (Times New Roman)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('Verdana', 'FontName');return false;\" class=\"verdana\">ABCDEFGHIJKLM (Verdana)</a></li>"
	+	"</ul>");
}

function initializeHTML_wrap_font_size() {
	document.getElementById("wrap_font_size").innerHTML = (""
	+	"<ul class=\"editor_ul_typeA\">"
	+	"<li><a href=\"/\" onclick=\"setFont('1', 'FontSize');return false;\" class=\"font_size_8pt\">あいうえお (8pt)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('2', 'FontSize');return false;\" class=\"font_size_10pt\">あいうえお (10pt)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('3', 'FontSize');return false;\" class=\"font_size_12pt\">あいうえお (12pt)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('4', 'FontSize');return false;\" class=\"font_size_14pt\">あいうえお (14pt)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('5', 'FontSize');return false;\" class=\"font_size_18pt\">あいうえお (18pt)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('6', 'FontSize');return false;\" class=\"font_size_24pt\">あいうえお (24pt)</a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('7', 'FontSize');return false;\" class=\"font_size_36pt\">あいう (36pt)</a></li>"
	+	"</ul>");
}
function initializeHTML_wrap_font_color() {
	document.getElementById("wrap_font_color").innerHTML = (""
	+	"<div class=\"wrap_font_style02\">"
	+	"<div class=\"editor_title\">"
	+	"<a href=\"/\" onclick=\"setFont('#595959', 'ForeColor');return false;\">"
	+	"<span id=\"current_color\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#595959;\" /></span>"
	+	"<span class=\"editor_subject\">基本の色</span>"
	+	"</a>"
	+	"</div>"
	+	"<ul>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fe1100', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fe1100;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fe4c24', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fe4c24;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fe875a', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fe875a;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fecda7', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fecda7;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#040967', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#040967;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#2d328d', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#2d328d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#44499a', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#44499a;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#686eb8', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#686eb8;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#6e0017', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6e0017;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#7b243d', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#7b243d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#834c6b', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#834c6b;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a7defe', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a7defe;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#006bd4', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006bd4;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#0087e1', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0087e1;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#37b7fe', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#37b7fe;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a7defe', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a7defe;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#4e003d', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#4e003d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#6d2262', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6d2262;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#926594', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#926594;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#c2a9c5', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#c2a9c5;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#005557', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#005557;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#03747b', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#03747b;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#579d9f', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#579d9f;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a2c6cc', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a2c6cc;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#1b0b73', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#1b0b73;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#4c379d', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#4c379d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#876eba', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#876eba;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#bbbaef', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#bbbaef;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#008e37', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#008e37;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#26b168', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#26b168;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#47be80', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#47be80;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#76d3a2', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#76d3a2;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#fefefe', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fefefe;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#e6e6e6', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#e6e6e6;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#cdcdcd', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cdcdcd;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#b4b4b4', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#b4b4b4;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a8a8a8', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a8a8a8;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#8d8d8d', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#8d8d8d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#747474', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#747474;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#595959', 'ForeColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#595959;\" /></a></li>"
	+	"</ul>"
	+	""
	+	"<div class=\"color_more\">"
	+	"<a href=\"/\" onclick=\"viewObj('wrap_font_color_more'); return false\">色選択...</a>"
	+	"</div>"
	+	"</div>");
}
function initializeHTML_wrap_bg_color() {
	document.getElementById("wrap_bg_color").innerHTML = (""
	+	"<div class=\"wrap_font_style02\">"
	+	"<div class=\"editor_title\">"
	+	"<a href=\"/\" onclick=\"setFont('#595959', 'BackColor');return false;\">"
	+	"<span id=\"current_color\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#595959;\" /></span>"
	+	"<span class=\"editor_subject\">基本の色</span>"
	+	"</a>"
	+	"</div>"
	+	""
	+	"<ul>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fe1100', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fe1100;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fe4c24', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fe4c24;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fe875a', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fe875a;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#fecda7', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fecda7;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#040967', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#040967;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#2d328d', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#2d328d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#44499a', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#44499a;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#686eb8', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#686eb8;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#6e0017', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6e0017;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#7b243d', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#7b243d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#834c6b', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#834c6b;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a7defe', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a7defe;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#006bd4', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006bd4;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#0087e1', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0087e1;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#37b7fe', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#37b7fe;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a7defe', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a7defe;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#4e003d', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#4e003d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#6d2262', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6d2262;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#926594', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#926594;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#c2a9c5', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#c2a9c5;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#005557', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#005557;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#03747b', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#03747b;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#579d9f', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#579d9f;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a2c6cc', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a2c6cc;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#1b0b73', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#1b0b73;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#4c379d', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#4c379d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#876eba', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#876eba;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#bbbaef', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#bbbaef;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#008e37', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#008e37;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#26b168', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#26b168;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#47be80', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#47be80;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#76d3a2', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#76d3a2;\" /></a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"setFont('#fefefe', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#fefefe;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#e6e6e6', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#e6e6e6;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#cdcdcd', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cdcdcd;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#b4b4b4', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#b4b4b4;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#a8a8a8', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#a8a8a8;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#8d8d8d', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#8d8d8d;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#747474', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#747474;\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"setFont('#595959', 'BackColor');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#595959;\" /></a></li>"
	+	"</ul>"
	+	""
	+	"<div class=\"color_more\">"
	+	"<a href=\"/\" onclick=\"viewObj('wrap_bg_color_more'); return false\">色選択...</a>"
	+	"</div>"
	+	"</div>");
}
function initializeHTML_wrap_font_color_more() {
	document.getElementById("wrap_font_color_more").innerHTML = (""
	+ "<dl>"
	+ "<dt>"
	+ "<span class=\"editor_subject\">色の選択</span>"
	+ "<input type=\"image\" src=\"http://static.aion.plaync.jp/common/editor/btn_close.gif\" alt=\"閉じる\" onclick=\"viewObj('wrap_font_color_more'); return false\" />"
	+ "</dt>"
	+ "<dd>"
	+ "<div class=\"editor_color_box\">"
	+ "<ul>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#000000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#003300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#006600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#009900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#330000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#333300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#336600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#339900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#660000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#663300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#666600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#669900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#000033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#003333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#006633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#009933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#330033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#333333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#336633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#339933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#660033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#663333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#666633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#669933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#000066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#003366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#006666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#009966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#330066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#333366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#336666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#339966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#660066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#663366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#666666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#669966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#990000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#993300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#996600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#999900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc0000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc3300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc6600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc9900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cccc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff0000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff3300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff6600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff9900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffcc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#990033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#993333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#996633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#999933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc0033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc3333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc6633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc9933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cccc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff0033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff3333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff6633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff9933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffcc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#990066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#993366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#996666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#999966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc0066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc3366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc6666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc9966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cccc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff0066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff3366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff6666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff9966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffcc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#000099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#003399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#006699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#009999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#330099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#333399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#336699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#339999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#660099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#663399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#666699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#669999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0000cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0000cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0033cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0033cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0066cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0066cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0099cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0099cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3300cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3300cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3333cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3333cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3366cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3366cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3399cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3399cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6600cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6600cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6633cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6633cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6666cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6666cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6699cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6699cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0000ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0000ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0033ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0033ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0066ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0066ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#0099ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0099ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#00ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3300ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3300ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3333ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3333ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3366ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3366ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#3399ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3399ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#33ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6600ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6600ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6633ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6633ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6666ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6666ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#6699ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6699ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#66ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#990099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#993399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#996699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#999999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc0099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc3399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc6699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc9999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cccc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff0099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff3399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff6699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff9999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffcc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9900cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9900cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9933cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9933cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9966cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9966cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9999cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9999cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc00cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc00cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc33cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc33cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc66cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc66cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc99cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc99cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cccccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff00cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff00cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff33cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff33cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff66cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff66cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff99cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff99cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffcccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9900ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9900ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9933ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9933ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9966ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9966ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#9999ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9999ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#99ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc00ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc00ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc33ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc33ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc66ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc66ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#cc99ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc99ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ccffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff00ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff00ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff33ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff33ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff66ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff66ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ff99ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff99ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('ForeColorValue', '#ffffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffffff;\" /></a></li>"
	+ "</ul>"
	+ "</div>"
	+ ""
	+ "<div class=\"editor_color_edit\">"
	+ "<span class=\"color_edit_txt\">現在</span>"
	+ "<div class=\"select_color_now\" id=\"ForeColorValue_now_select\" style=\"background:#cc99cc;\"></div>"
	+ ""
	+ "<span class=\"color_edit_txt\">選択</span>"
	+ "<div class=\"select_color_new\" id=\"ForeColorValue_selected\" style=\"background:#fefe33;\"></div>"
	+ "<div class=\"select_color_name\">"
	+ "<input type=\"text\" name=\"ForeColorValue\" id=\"ForeColorValue\" class=\"inputText\" onchange=\"changeColor('ForeColorValue', this.value)\"/>"
	+ "</div>"
	+ ""
	+ "<input type=\"image\" src=\"http://static.aion.plaync.jp/common/editor/btn_del.gif\" alt=\"消す\" class=\"vt\" />"
	+ "</div>"
	+ "</dd>"
	+ "<dd class=\"editor_color_button\"><img src=\"http://static.aion.plaync.jp/common/editor/btn_conf.gif\" alt=\"確認\" onclick=\"changeCustomColor('ForeColor'); return false\" style=\"cursor:pointer\"/></dd>"
	+ "</dl>");
}
function initializeHTML_wrap_bg_color_more() {
	document.getElementById("wrap_bg_color_more").innerHTML = (""
	+ "<dl>"
	+ "<dt>"
	+ "<span class=\"editor_subject\">色選択</span>"
	+ "<input type=\"image\" src=\"http://static.aion.plaync.jp/common/editor/btn_close.gif\" alt=\"閉じる\" onclick=\"viewObj('wrap_font_color_more'); return false\" />"
	+ "</dt>"
	+ "<dd>"
	+ "<div class=\"editor_color_box\">"
	+ "<ul>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#000000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#003300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#006600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#009900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#330000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#333300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#336600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#339900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#660000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#663300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#666600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#669900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#000033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#003333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#006633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#009933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#330033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#333333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#336633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#339933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#660033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#663333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#666633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#669933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#000066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#003366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#006666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#009966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#330066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#333366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#336666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#339966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#660066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#663366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#666666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#669966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#990000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#993300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#996600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#999900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99cc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc0000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc3300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc6600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc9900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cccc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff0000');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0000;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff3300');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3300;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff6600');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6600;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff9900');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9900;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffcc00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffff00');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff00;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#990033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#993333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#996633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#999933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99cc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc0033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc3333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc6633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc9933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cccc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff0033');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0033;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff3333');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3333;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff6633');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6633;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff9933');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9933;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffcc33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffff33');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff33;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#990066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#993366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#996666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#999966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99cc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc0066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc3366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc6666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc9966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cccc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff0066');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0066;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff3366');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3366;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff6666');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6666;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff9966');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9966;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffcc66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffff66');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff66;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#000099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#000099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#003399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#003399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#006699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#006699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#009999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#009999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#330099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#330099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#333399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#333399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#336699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#336699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#339999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#339999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#660099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#660099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#663399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#663399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#666699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#666699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#669999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#669999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0000cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0000cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0033cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0033cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0066cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0066cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0099cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0099cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3300cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3300cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3333cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3333cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3366cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3366cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3399cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3399cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6600cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6600cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6633cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6633cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6666cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6666cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6699cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6699cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0000ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0000ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0033ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0033ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0066ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0066ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#0099ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#0099ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#00ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#00ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3300ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3300ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3333ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3333ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3366ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3366ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#3399ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#3399ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#33ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#33ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6600ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6600ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6633ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6633ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6666ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6666ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#6699ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#6699ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#66ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#66ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#990099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#990099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#993399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#993399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#996699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#996699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#999999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#999999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99cc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc0099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc0099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc3399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc3399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc6699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc6699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc9999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc9999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cccc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff0099');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff0099;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff3399');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff3399;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff6699');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff6699;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff9999');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff9999;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffcc99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcc99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffff99');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffff99;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9900cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9900cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9933cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9933cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9966cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9966cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9999cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9999cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99cccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99cccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc00cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc00cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc33cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc33cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc66cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc66cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc99cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc99cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cccccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cccccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff00cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff00cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff33cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff33cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff66cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff66cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff99cc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff99cc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffcccc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffcccc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffffcc');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffffcc;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9900ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9900ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9933ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9933ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9966ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9966ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#9999ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#9999ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#99ffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#99ffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc00ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc00ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc33ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc33ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc66ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc66ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#cc99ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#cc99ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ccffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ccffff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff00ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff00ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff33ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff33ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff66ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff66ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ff99ff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ff99ff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffccff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffccff;\" /></a></li>"
	+ "<li><a href=\"/\" onclick=\"changeColor('BackColorValue', '#ffffff');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/trans.gif\" alt=\"\" style=\"background:#ffffff;\" /></a></li>"
	+ "</ul>"
	+ "</div>"
	+ ""
	+ "<div class=\"editor_color_edit\">"
	+ "<span class=\"color_edit_txt\">現在</span>"
	+ "<div class=\"select_color_now\" id=\"BackColorValue_now_select\" style=\"background:#cc99cc;\"></div>"
	+ ""
	+ "<span class=\"color_edit_txt\">選択</span>"
	+ "<div class=\"select_color_new\" id=\"BackColorValue_selected\" style=\"background:#fefe33;\"></div>"
	+ "<div class=\"select_color_name\">"
	+ "<input type=\"text\" name=\"BackColorValue\" id=\"BackColorValue\" class=\"inputText\" onchange=\"changeColor('BackColorValue', this.value)\"/>"
	+ "</div>"
	+ ""
	+ "<input type=\"image\" src=\"http://static.aion.plaync.jp/common/editor/btn_del.gif\" alt=\"消す\" class=\"vt\" />"
	+ "</div>"
	+ "</dd>"
	+ "<dd class=\"editor_color_button\"><img src=\"http://static.aion.plaync.jp/common/editor/btn_conf.gif\" alt=\"確認\" onclick=\"changeCustomColor('BackColor'); return false\" style=\"cursor:pointer\"/></dd>"
	+ "</dl>");
}
function initializeHTML_wrap_emoticon() {
	document.getElementById("wrap_emoticon").innerHTML = (""
	+	"<dl>"
	+	"<dt><div class=\"editor_subject\">顔文字挿入</div></dt>"
	+	"<dd>"
	+	"<ul>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male01.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male01.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male02.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male02.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male03.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male03.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male04.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male04.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male05.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male05.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male06.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male06.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male07.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male07.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_male08.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_male08.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female01.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female01.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female02.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female02.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female03.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female03.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female04.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female04.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female05.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female05.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female06.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female06.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female07.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female07.gif\" alt=\"\" /></a></li>"
	+	"<li><a href=\"/\" onclick=\"insertImoticon('http://static.aion.plaync.jp/common/editor/emoticon_female08.gif');return false;\"><img src=\"http://static.aion.plaync.jp/common/editor/emoticon_female08.gif\" alt=\"\" /></a></li>"
	+	"</ul>"
	+	"</dd>"
	+	"</dl>");
}
function initializeHTML_wrap_special_character() {
	document.getElementById("wrap_special_character").innerHTML = (""
	+	"<dl>"
	+	"<dt><div class=\"editor_subject\">特殊文字挿入</div></dt>"
	+	"<dd>"
	+	"<ul>"
	+	"<li><a href=\"/\" onclick=\"insertText('、');return false;\">、</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('。');return false;\">。</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('·');return false;\">·</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('‥');return false;\">‥</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('…');return false;\">…</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('¨');return false;\">¨</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('〃');return false;\">〃</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('­');return false;\">­</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('―');return false;\">―</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∥');return false;\">∥</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('＼');return false;\">＼</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∼');return false;\">∼</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('‘');return false;\">‘</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('’');return false;\">’</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('“');return false;\">“</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('”');return false;\">”</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('〔');return false;\">〔</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('〕');return false;\">〕</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('〈');return false;\">〈</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('〉');return false;\">〉</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('《');return false;\">《</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('》');return false;\">》</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('「');return false;\">「</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('」');return false;\">」</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('『');return false;\">『</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('』');return false;\">』</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('【');return false;\">【</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('】');return false;\">】</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('±');return false;\">±</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('×');return false;\">×</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('÷');return false;\">÷</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('≠');return false;\">≠</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('≤');return false;\">≤</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('≥');return false;\">≥</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∞');return false;\">∞</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∴');return false;\">∴</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('°');return false;\">°</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('′');return false;\">′</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('″');return false;\">″</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('℃');return false;\">℃</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('Å');return false;\">Å</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('￠');return false;\">￠</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('￡');return false;\">￡</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('￥');return false;\">￥</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♂');return false;\">♂</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♀');return false;\">♀</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∠');return false;\">∠</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⊥');return false;\">⊥</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('⌒');return false;\">⌒</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∂');return false;\">∂</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∇');return false;\">∇</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('≡');return false;\">≡</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('≒');return false;\">≒</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('§');return false;\">§</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('※');return false;\">※</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('☆');return false;\">☆</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('★');return false;\">★</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('○');return false;\">○</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('●');return false;\">●</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◎');return false;\">◎</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◇');return false;\">◇</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◆');return false;\">◆</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('□');return false;\">□</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('■');return false;\">■</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('△');return false;\">△</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▲');return false;\">▲</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▽');return false;\">▽</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▼');return false;\">▼</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('→');return false;\">→</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('←');return false;\">←</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↑');return false;\">↑</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↓');return false;\">↓</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↔');return false;\">↔</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('〓');return false;\">〓</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('≪');return false;\">≪</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('≫');return false;\">≫</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('√');return false;\">√</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∽');return false;\">∽</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∝');return false;\">∝</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∵');return false;\">∵</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('∫');return false;\">∫</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∬');return false;\">∬</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∈');return false;\">∈</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∋');return false;\">∋</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⊆');return false;\">⊆</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⊇');return false;\">⊇</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⊂');return false;\">⊂</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⊃');return false;\">⊃</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∪');return false;\">∪</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∩');return false;\">∩</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∧');return false;\">∧</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∨');return false;\">∨</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('￢');return false;\">￢</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⇒');return false;\">⇒</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⇔');return false;\">⇔</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∀');return false;\">∀</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('∃');return false;\">∃</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('～');return false;\">～</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('ˇ');return false;\">ˇ</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('˘');return false;\">˘</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('¸');return false;\">¸</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('˛');return false;\">˛</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('¡');return false;\">¡</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('¿');return false;\">¿</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('ː');return false;\">ː</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∮');return false;\">∮</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∑');return false;\">∑</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('∏');return false;\">∏</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('¤');return false;\">¤</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('℉');return false;\">℉</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('‰');return false;\">‰</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◁');return false;\">◁</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('◀');return false;\">◀</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▷');return false;\">▷</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▶');return false;\">▶</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♤');return false;\">♤</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♠');return false;\">♠</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♡');return false;\">♡</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♥');return false;\">♥</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♧');return false;\">♧</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♣');return false;\">♣</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('⊙');return false;\">⊙</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◈');return false;\">◈</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▣');return false;\">▣</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◐');return false;\">◐</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('◑');return false;\">◑</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▒');return false;\">▒</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▤');return false;\">▤</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('▥');return false;\">▥</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▨');return false;\">▨</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▧');return false;\">▧</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▦');return false;\">▦</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('▩');return false;\">▩</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♨');return false;\">♨</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('☏');return false;\">☏</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('☎');return false;\">☎</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('☜');return false;\">☜</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('☞');return false;\">☞</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('¶');return false;\">¶</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('†');return false;\">†</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('‡');return false;\">‡</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↕');return false;\">↕</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↗');return false;\">↗</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↙');return false;\">↙</a></li>"
	+	""
	+	"<li><a href=\"/\" onclick=\"insertText('↖');return false;\">↖</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('↘');return false;\">↘</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♭');return false;\">♭</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♩');return false;\">♩</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♪');return false;\">♪</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('♬');return false;\">♬</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('㉿');return false;\">㉿</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('㈜');return false;\">㈜</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('№');return false;\">№</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('㏇');return false;\">㏇</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('™');return false;\">™</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('㏂');return false;\">㏂</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('㏘');return false;\">㏘</a></li>"
	+	"<li><a href=\"/\" onclick=\"insertText('℡');return false;\">℡</a></li>"
	+	"<li><a href=\"#\"></a></li>"
	+	"<li><a href=\"#\"></a></li>"
	+	"</ul>"
	+	"</dd>"
	+	"</dl>");
}

function changeColor(setType, colorValue) {
	document.getElementById(setType).value = colorValue;
	document.getElementById(setType + '_selected').style.background = colorValue;
}

function changeCustomColor(setType) {
	var customColor = document.getElementById(setType + 'Value').value;
	Selection.select();
	setFont(customColor, setType);
}
var attachWindow = null;
function openAttachWindow(types) {
	if(attachWindow != null) {
		attachWindow.close();
	}
	if(types == 'drawing')
		attachWindow = window.open("/common/imageEditor/drawing.html", "editorSub", "width=900, height=700");
	else if(types == 'imageeditor')
		attachWindow = window.open("/common/imageEditor/imageeditor_frame.html", "editorSub", "width=900, height=670");

}

