// JavaScript Document

function CreateXmlHttp()
{
	//Creating object of XMLHTTP in IE
	try
	{
		objXmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			objXmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		} 
		catch(oc)
		{
			objXmlHttp = null;
		}
	}
	//Creating object of XMLHTTP in Mozilla and Safari 
	if(!objXmlHttp && typeof XMLHttpRequest != "undefined") 
	{
		objXmlHttp = new XMLHttpRequest();
	}
	
	return objXmlHttp;
}

function GetInnerText (node)
{
	 return (node.textContent || node.innerText || node.text) ;
}