function saveShoutData(){shoutRequest=GetXmlHttpObject();if(shoutRequest==null){alert("Ei toeta AJAXit, vabandame");return;}
if(document.newShoutBox.shouter_comment.value==""||document.newShoutBox.shouter_comment.value=="NULL"){alert('Sisesta sõnum!');return;}
shoutRequest.open("POST","http://www.fitness.ee/acts/jsonShoutSend.php",true);shoutRequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded");shoutRequest.send('&comment='+document.newShoutBox.shouter_comment.value);document.newShoutBox.shouter_comment.value='';document.newShoutBox.shouter_comment.focus();}
function showShoutData(){showRequest=GetXmlHttpObject();showRequest.onreadystatechange=function(){if(showRequest.readyState==4){if(document.getElementById('theshoutarea')){document.getElementById('theshoutarea').innerHTML=showRequest.responseText;}}}
showRequest.open("GET","http://www.fitness.ee/acts/jsonShoutShow.php",true);showRequest.send(null);}
showShoutData();setInterval("showShoutData()",5000);
