var dispmsgs = '';

function getSBMsg(allmsgs) {
	if (allmsgs != dispmsgs && dispmsgs != 'all') {dispmsgs = allmsgs;}
	$.post(shoutbox_prog, {a:'ping', cnt:dispmsgs},  function(resp){
		ajaxResponse(resp);
		 }
	);
	cleared=false;
	setTimeout("getSBMsg(dispmsgs)",(shoutbox_refresh_interval* 60 * 1000));
}

function sendSBMsg() {
	var msg1 = document.getElementById('shout_text').value;

	if (msg1.length > shout_text_max) {
		alert(sb_error); return false;
	}
	if (msg1.length <= 0) {
		alert(sb_msg_blank); return false;
	}
	document.getElementById('shout_text').value='';
	var msg=encodeURIComponent(msg1);
	$.post(shoutbox_prog, {a:'sendSBMsg', msg:msg},  function(resp){
		 ajaxResponse(resp);
		 }
	);
	cleared=false;
}


