function makeXmlHttp()
{
	var xmlhttp = null;
	
	if(window.XMLHttpRequest)
	{
		xmlhttp = new XMLHttpRequest();
	}
	else
	{
		try
		{
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(e)
		{
			window.alert("Uw browser ondersteunt deze website niet!");
		}
	}
	
	return xmlhttp;
}