// JavaScript Document
function update_shout(){
	var myajax=ajaxpack.ajaxobj;
		//if (myajax.readyState == 4){ //if request of file completed
		//	if (myajax.status==200){
				container = document.getElementById('shoutbox');
				container.innerHTML = myajax.responseText;
			//}
		//}
}

function go(){
	var contents=document.getElementById("shout_form").shoutfield.value //get value to post from a form field
	var poststr = 'shout=' + encodeURI(contents);
	document.getElementById("shout_form").shoutfield.value=''
	ajaxpack.postAjaxRequest("ajx_shoutbox.php", poststr, update_shout, "txt")
}