function GetXmlHttpObject(handler){var objXMLHttp=null;if(window.XMLHttpRequest){objXMLHttp=new XMLHttpRequest()}else{if(window.ActiveXObject){objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")}}return objXMLHttp}function Abrir_ventana(pagina){var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=520, height=520, top=85, left=140";window.open(pagina,"",opciones)}function stateChanged(){if(xmlHttp.readyState==4||xmlHttp.readyState=="complete"){if(document.getElementById("chat_icon")!=null){document.getElementById("chat_icon").innerHTML=xmlHttp.responseText}}else{}}function stateChanged2(){if(xmlHttp.readyState==4||xmlHttp.readyState=="complete"){if(xmlHttp.responseText!=""){var ids=xmlHttp.responseText.split(",");for(var i=0;i<ids.length;i=i+3){Abrir_ventana("chat/chat_admin.php?user="+ids[i]+"&seid="+ids[i+1]+"&tic="+ids[i+2])}}}else{}}function htmlData(url,querytype){xmlHttp=GetXmlHttpObject();if(xmlHttp==null){alert("Browser does not support HTTP Request. Try other browser.");return}url=url+"?sid="+Math.random();xmlHttp.onreadystatechange=stateChanged;xmlHttp.open("GET",url,true);xmlHttp.send(null)}function htmlData2(url,querytype){xmlHttp=GetXmlHttpObject();if(xmlHttp==null){alert("Browser does not support HTTP Request. Try other browser.");return}url=url+"?sid="+Math.random();xmlHttp.onreadystatechange=stateChanged2;xmlHttp.open("GET",url,true);xmlHttp.send(null)};