function OnlineChatBack(str)
{ 

xmlHttp=GetXmlHttpObject(); 
if (xmlHttp==null) 
  {
  alert ("Your browser does not support AJAX!"); 
  return;
  } 
var url="f_OnlineChatBack.asp";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged6123;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChanged6123() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("Spoken").innerHTML=xmlHttp.responseText;
}
}


