var xmlHttpDownMenu;function showDownMenuAjax(str){var url="ajaxdownmenu.php";xmlHttpDownMenu=GetXmlHttpObject();if(xmlHttpDownMenu==null)
 { alert("Your browser does not support AJAX!"); return; }url=url+"?q="+str;url=url+"&sid="+Math.random();xmlHttpDownMenu.open("GET", url, true);xmlHttpDownMenu.onreadystatechange=stateChangedDownMenu;xmlHttpDownMenu.send(null);} 
function stateChangedDownMenu(){ 
if(xmlHttpDownMenu.readyState==4){if(xmlHttpDownMenu.status==200)
   {text="";text=xmlHttpDownMenu.responseText;pos1=text.indexOf(" ");news=text.substr(0, pos1);pm=text.substr(pos1+1);document.getElementById("id_dm_news").innerHTML=news;document.getElementById("id_dm_pm").innerHTML=pm;}}}