function getContentToObject(source,destination) {
    var xmlHttp;
    try {
        // Firefox, Opera 8.0+, Safari
        xmlHttp=new XMLHttpRequest();
    }
    catch (e) {
        // Internet Explorer
        try {
            xmlHttp=new ActiveXObject('Msxml2.XMLHTTP');
        }
        catch (e) {
            try {
                xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');
            }
            catch (e) {
                alert('Your browser does not support AJAX!');
                return false;
            }
        }
    }
    xmlHttp.onreadystatechange=function() {
        if(xmlHttp.readyState==4) {
            if(destination == 'poster') {
                document.getElementById(destination).innerHTML = xmlHttp.responseText;
            } else {
                document.getElementById(destination + 'Content').innerHTML = xmlHttp.responseText;
            }
            
            document.getElementById('uitklapper').style.display = 'none';
            document.getElementById('poster').style.display = 'none';
            document.getElementById('spandoek').style.display = 'none';
            document.getElementById(destination).style.display = 'block';
            if(destination != 'poster') {
                pageScroll();
            }
        }
    }
    xmlHttp.open('GET',source + '&random' + '&obj=' + destination + '&' + Math.random(),true);
    xmlHttp.send(null);
    
    return false;
}

