function scrolldown(id)
{
	var obj = document.getElementById(id);
	if (obj) 
	{
		obj.state = 0;//инициализируем состояние
		obj.timer = null;
		obj.maxVert = obj.scrollHeight - obj.offsetHeight;//максимальная высота прокрутки
		obj.scrollTop = obj.scrollTop + obj.maxVert;
	}
}

function maxminimize()
{
	var $maxmin = $("#maxmin");
	if ($maxmin.text() == "Свернуть") {
	    $('#chatbody').height("15px");
	    $maxmin.text("Развернуть");
		scrolldown('chatbody');
	} else {
	    $('#chatbody').height("220px");
	    $maxmin.text("Свернуть");
		scrolldown('chatbody');
	}
}

function moderpanel()
{
	if (ws==1)
	{
		document.getElementById('chatbodyadmin').style.display="none";
		document.getElementById('chatbody').style.width="892px";
		ws=2;
	}else{
		document.getElementById('chatbodyadmin').style.display="block";
		document.getElementById('chatbody').style.width="750px";
		ws=1;
	}
}

