			var  XmlHttp;
			function CreateXmlHttpOnlineUsers11()
			{
				//Creating object of XMLHTTP in IE
				try
				{		
					XmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
				}
				catch(e)
				{
					try
					{
						XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
					} 
					catch(oc)
					{
						XmlHttp = null;
					}
				}
				
				//Creating object of XMLHTTP in Mozilla and Safari 
				if(!XmlHttp && typeof XMLHttpRequest != "undefined") 
				{
					XmlHttp = new XMLHttpRequest();
				}
				
				// If browser supports XMLHTTPRequest object
				if(XmlHttp)
				{
				
					//Setting the event handler for the response
			
					XmlHttp.onreadystatechange = HandleResponseUsers;
					
					//Initializes the request object with GET (METHOD of posting), 
					//Request URL and sets the request as asynchronous.
					
					XmlHttp.open("GET", "read.php",  true);	
					
					//Sends the request to server
					XmlHttp.send(null);		
								
				}
			}

			function HandleResponseUsers()
			{

				// To make sure receiving response data from server is completed
				if(XmlHttp.readyState == 4)
				{	
					// To make sure valid response is received from the server, 200 means response received is OK
					if(XmlHttp.status == 200)
					{	
						//alert( XmlHttp.responseText);
						document.getElementById("proddiv").innerHTML = XmlHttp.responseText;
						///callChatRoom(XmlHttp.responseText);
						//SetFormData(XmlHttp.responseXML.documentElement);
						
						
					}
					else
					{	
						//alert("There was a problem retrieving data from the server." );
						//SetFormData(XmlHttp.responseText);
					}
				}
			}     
     
			
