
/*
	[Discuz!] (C)2001-2007 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$RCSfile: chat.js,v $
	$Revision: 6.0.0 $
	$Date: 2007/09/21 20:00:00 $
	for 6.0.0 by Linux0911 (Original Author: oytktk for Discuz! 2.5)
	http://linux0911.no-ip.info
*/

function bsay_onkeydown()
{
	if (window.event && window.event.keyCode==13)
	{
		document.wogb.bsay.value = document.wogb.bbsay.value
		document.wogb.mmcbbs.checked=false
		$("qqface").style.display = "none";
		document.wogb.submit;
		document.wogb.bbsay.value="";
	}
}
function subb_onclick()
{
	document.wogb.bsay.value = document.wogb.bbsay.value
	document.wogb.mmcbbs.checked=false
	$("qqface").style.display = "none";
	document.wogb.submit;
	document.wogb.bbsay.value="";
	document.wogb.bbsay.focus();
}
function showmuti()
{
	if($("mmcbbs").checked == true) {
		$("qqface").style.display = "";
	} else {
		$("qqface").style.display = "none";
	}
	document.wogb.bbsay.focus();
}
function AddText(NewCode)
{
	document.wogb.bbsay.value+=NewCode
	document.wogb.bbsay.focus();
}