﻿/*******************************************************************
*   Zorgt voor de ajax verwerking van kleine pagina's / elementen
*******************************************************************/

function loadminiXML(url, id)

//*****************************************************
//
//   Deze functie is ontwikkeld door VIRULY INTERCLICK 
//   HTTP://WWW.VIRULY.INTERCLICK.NL
//   Voor reproductie, graag toestemming vragen.
//
//*****************************************************
	{
	// alert(url);
	document.getElementById(id).innerHTML='<p style="text-align:center"><br/>Bezig met zoeken...</p>';

	x = false;
	if (window.XMLHttpRequest)
		{
		try
			{
			x = new XMLHttpRequest();
			}
		catch (e)
			{
			x = false;
			}
		}
	else if (window.ActiveXObject)
		{
		try
			{
			x = new ActiveXObject("Msxml2.XMLHTTP");
			}
		catch (e)
			{
			try
				{
				x = new ActiveXObject("Microsoft.XMLHTTP");
				}
			catch (e)
				{
				x = false;
				}
			}
		}
	if (x)
		{
		x.onreadystatechange = function()
			{
			if (x.readyState == 4 && x.status == 200 || x.status == 500)
				{
				document.getElementById(id).innerHTML = x.responseText;
				}
			}
		x.open("GET", url, true);
		x.send(null);
		}
	}
