	var xmlHTTP_on;
		function createXMLHttpRequest_on(){
			if (window.ActiveXObject){
				xmlHTTP_on=new ActiveXObject("Microsoft.XMLHTTP");
			}else if (window.XMLHttpRequest){
				xmlHTTP_on=new XMLHttpRequest();
			}
		}
	function handleStateChange_on(){
		if (xmlHTTP_on.readyState==4){
			if (xmlHTTP_on.status==200){
				document.getElementById( 'txtmessage_on').innerHTML=xmlHTTP_on.responseText;
				//txtmessage_on.innerHTML=xmlHTTP_on.responseText;
			}else{
				document.getElementById( 'txtmessage_on').innerHTML=xmlHTTP_on.statusText;
				//txtmessage_on.innerHTML=xmlHTTP_on.statusText;
			}
		}
	}
	function requestSecure_on(){
		createXMLHttpRequest_on();
			xmlHTTP_on.open("POST","livechat/showicon.asp",true);
			xmlHTTP_on.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
			xmlHTTP_on.onreadystatechange=handleStateChange_on;
			xmlHTTP_on.send("");		
			window.setTimeout("requestSecure_on()",5000);
	}
 requestSecure_on();