var colorArray = [
	"#999999","#666666","#444444","#222222","#000000",
	"#d65315","#fe0000","#c00002","#8f0001","#600001",
	"#cacb5e","#bfc000","#909001","#606000","#373710",
	"#50b072","#01c000","#019900","#016301","#014001",
	"#6060c0","#0000fe","#0000cb","#02009a","#000060"
];

var isPaletteShowed = 0;

function getcolor(num) {
	if (num < 0 || num >= colorArray.length) num = 4;
	return colorArray[num];
}

function absPosition(obj) { // top - left координвты объекта
	var x = y = 0;
	while(obj) {
		x += obj.offsetLeft;
		y += obj.offsetTop;
		obj = obj.offsetParent;
	}
	return {x:x, y:y};
}

function closePaletteForChat()
{
	isPaletteShowed = 0;
	gebi("forChatPopup").style.display = "none";
}

function showPaletteForChat(obj, id) { // Палитра цветов
	if (isPaletteShowed) {
		closePaletteForChat();
		return false;
	}
	var inn = "<div class=\"palitra\">";
	for (i = 0; i < colorArray.length; i++) inn += "<a href=\"#\" style=\"background-color:" + colorArray[i] + "\" onclick=\"setColorForChat(" + i + ", '" + id + "');return false;\"><img src=\"http://img.mail.ru/0.gif\" width=\"1\" height=\"1\"></a>";
	inn += "<a href=\"\" style=\"font-size:11px;font-family:tahoma;width:92px;border:1px solid #000000;background-color:#FFFFFF;color:#000000;text-decoration:none;text-align:center;height:16px\" onclick=\"setColorForChat(4, '" + id + "');return false;\">По умолчанию</a>"; 
	inn += "</div>";
	gebi("forChatPopup").innerHTML = inn;
	gebi("forChatPopup").style.top = absPosition(obj).y;
	gebi("forChatPopup").style.left = absPosition(obj).x + obj.offsetWidth;
	gebi("forChatPopup").style.display = "";
	isPaletteShowed = 1;
	return false;
}
function setColorForChat(color, id) {
	closePaletteForChat();
	gebi(id).style.color = getcolor(color);
	gebi("nickcolor_one").value = color;
}

