function getShout() { ajax_request("/submit/ajax/chatget.php","shoutframe","m=10"); }
function postShout() {
	var textbox2 = document.getElementById('sb');
	if (!textbox2.value) { alert("Please enter a message to submit before clicking Send."); return false; }
	ajax_request("/submit/ajax/chatpost.php",null,"b="+encode_utf8(textbox2.value));
	textbox2.value = "";
	textbox2.focus();
	setTimeout("getShout();",300);
	return false;
}