function s_ajax( url )
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
url=url+"&uniq="+Math.random()
xmlHttp.open("GET",url,false)
xmlHttp.send(null)

return xmlHttp.responseText

}
