/*
// +-----------------------------------------------------------------------------
// | KVLV
// +-----------------------------------------------------------------------------
// | KHK - 2 TI - 2008-2009
// +-----------------------------------------------------------------------------
// | Functie die noodzakelijk is om gebruik te kunnen maken van Ajax.
// | 
// +-----------------------------------------------------------------------------
// | KHK - Jeroen Cuppens - Dries Curinckx
// +-----------------------------------------------------------------------------
*/
	var xmlHttp = false;

	function getXMLHttpObject ()
	{
		try 
		{
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");	 	// Internet Explorer 1ste poging
		} catch (e) {
			try 
			{
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); // Internet Explorer 2de poging
			} catch (e2) {
				xmlHttp = false;
			}	
		}
		if (!xmlHttp && typeof XMLHttpRequest != 'undefined') {
			xmlHttp = new XMLHttpRequest(); 								// Mozilla, Firefox, Opera, ...
		}
	}
	
