	// Getting the 'wie' element
	var options1 = 
	{
		script:"/js/script.autocomplete.php?json=true&",
		varname:"GetWie",
		json:true,
		callback: function (obj) { document.getElementById('GetWie').value = obj.id; }
	};
	var as_json1 = new bsn.AutoSuggest('GetWieID', options1);

	// Getting the 'wat' element
	var options2 = 
	{
		script:"/js/script.autocomplete.php?json=true&",
		varname:"GetWat",
		json:true,
		callback: function (obj) { document.getElementById('GetWat').value = obj.id; }
	};
	var as_json2 = new bsn.AutoSuggest('GetWatID', options2);

	// Getting the 'waar' element
	var options3 = 
	{
		script:"/js/script.autocomplete.php?json=true&",
		varname:"GetWaar",
		json:true,
		callback: function (obj) { document.getElementById('GetWaar').value = obj.id; }
	};
	var as_json3 = new bsn.AutoSuggest('GetWaarID', options3);

	var options4 = 
	{
		script:"/js/script.autocomplete.php?json=true&",
		varname:"GetText",
		json:true,
		callback: function (obj) { document.getElementById('GetText').value = obj.id; }
	};
	var as_json4 = new bsn.AutoSuggest('GetTextID', options4);


