function getNiext(datas)
{
document.getElementById('waitnext').innerHTML = '<img src=design/loading.gif />';
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
var url="getnext.php"
url=url+"?dalsi="+datas
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=zmenitTo
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function zmenitTo()
{ 
 if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
 document.getElementById("shoutbox").
 innerHTML=xmlHttp.responseText;
 document.getElementById('waitnext').innerHTML = '';

 }
}
