	function getxmlobject()
	{
		var xmlhttp = false
		if (window.XMLHttpRequest) // if Mozilla, Safari etc
			xmlhttp = new XMLHttpRequest()
		else if (window.ActiveXObject){ // if IE
			try {
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP")
			} 
			catch (e){
				try{
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP")
				}
				catch (e)
				{
					xmlhttp = false;
				}
			}
		}
		return xmlhttp;
	
	}
