// Copyright (C) 2009 Ryan Wittering, rwittering@winkwebdesign.nl function makexmlhttp() { var xmlhttp = null; if(window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e) { window.alert("Uw webbrowser is te oud om dit script te lezen, update uw webbrowser."); } } return xmlhttp; }