function CreaRichiestaAjax(handler) {  //casini vari per renderlo crossbrowser  var xmlhttp = null;  try {    xmlhttp = new XMLHttpRequest();  } catch(e) {    try {        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");    } catch(e) {        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");    }  }  xmlhttp.onreadystatechange = handler;  return xmlhttp;}function getAjaxUsersList() {    if (myRequest.readyState == 4 && myRequest.status == 200){        obj_id("divListaUtenti").innerHTML = myRequest.responseText;    }}function ajaxUsersList(iniziali) {    myRequest = CreaRichiestaAjax(getAjaxUsersList);    myRequest.open("GET",_SITEPATH+"listaUtenti.srv.php?iniziali="+iniziali+"&rand="+escape(Math.random()));    myRequest.send(null);}function getAjaxCalendario() {    if (myRequest.readyState == 4 && myRequest.status == 200){        obj_id(_IDBOXCALENDARIO).innerHTML = myRequest.responseText;    }}function richiestaAjaxCalendario(anno,mese) {    obj_id(_IDBOXCALENDARIO).innerHTML = "<img src='"+spinnerImg.src+"'>";    myRequest = CreaRichiestaAjax(getAjaxCalendario);    myRequest.open("GET","calendario.srv.php?rand="+escape(Math.random())+"&anno="+anno+"&mese="+mese);    myRequest.send(null);}function pageLoad(){}