function handle_response(data,thepos){
	switch (xmlactions[thepos]){
		case "moreinfo":
		
			var thewindowcontainer = document.createElement('div');
			thewindowcontainer.className = 'windowcontainer';
			thewindowcontainer.setAttribute('name','moreinfowindow');
			thewindowcontainer.setAttribute('id','windowcontainer');
			thewindowcontainer.style.width = '416px';
			thewindowcontainer.style.top = (document.documentElement.scrollTop+10)+'px';
			
			thewindowcontainer.innerHTML = data;
			
			document.getElementById('windows').appendChild(thewindowcontainer);
			
		break;
		case "postform":
			alert('Uw bericht is succesvol verstuurd.');
			kill();
		break;
	}
}