var xmlHttpLeftMenu;function showLeftMenuAjax(str){var url="ajaxleftmenu.php";xmlHttpLeftMenu=GetXmlHttpObject();if(xmlHttpLeftMenu==null)
 { alert("Your browser does not support AJAX!"); return; }url=url+"?q="+str;url=url+"&sid="+Math.random();xmlHttpLeftMenu.open("GET", url, true);xmlHttpLeftMenu.onreadystatechange=stateChangedLeftMenu;xmlHttpLeftMenu.send(null);} 
function stateChangedLeftMenu(){ 
if(xmlHttpLeftMenu.readyState==4){if(xmlHttpLeftMenu.status==200)
   {text="";text=xmlHttpLeftMenu.responseText;pos1=text.indexOf(" ");visitors=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");users=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");ou=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");authors=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");works=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");reviews=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");tags=text.substr(0, pos1);text=text.slice(pos1+1);pos1=text.indexOf(" ");showcases=text.substr(0, pos1);text=text.slice(pos1+1);projects=text;document.getElementById("id_lm_visitors").innerHTML=visitors;document.getElementById("id_lm_users").innerHTML=users;document.getElementById("id_lm_ou").innerHTML=ou;document.getElementById("id_lm_authors").innerHTML=authors;document.getElementById("id_lm_works").innerHTML=works;document.getElementById("id_lm_reviews").innerHTML=reviews;document.getElementById("id_lm_tags").innerHTML=tags;document.getElementById("id_lm_showcases").innerHTML=showcases;document.getElementById("id_lm_projects").innerHTML=projects;}}}