function getAjax(file,container,action,values){
	// array aanmaken voor de GET action
	var GetArr = new Array();
	GetArr = action.split(":");
	
	var ValueArr = new Array();
	ValueArr = values.split(":");

	document.getElementById(container).innerHTML = '<span style="color:#000000;"><img src="' + _PROJECTURL + 'content/img/loader.gif" alt="loading...">loading....</span>';
var xmlhttp=false; //Clear our fetching variable
        try {
                xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); //Try the first kind of active x object…
        } catch (e) {
                try {
                        xmlhttp = new
                        ActiveXObject('Microsoft.XMLHTTP'); //Try the second kind of active x object
            } catch (E) {
                xmlhttp = false;
                        }
        }
        if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
                xmlhttp = new XMLHttpRequest(); //If we were able to get a working active x object, start an XMLHttpRequest
        }

                // url aanmaken voor het aanroepen van de pagina met de GET en values.
                var querystring = ""
                for (i = 0; i < GetArr.length; i++) {
                    if (i == 0) {
                        querystring = querystring + "?" + GetArr[i] + "=" + ValueArr[i]
                    } else {
                        querystring = querystring + "&" + GetArr[i] + "=" + ValueArr[i]
                    }
                }
        
				var url = "";
				url = file + querystring;
				//window.open(url);
    xmlhttp.open('GET', url,  true); //Open the file through GET, and add the page we want to retrieve as a GET variable **
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { //Check if it is ready to recieve data
            var content = xmlhttp.responseText; //The content data which has been retrieved ***
            if (content) { //Make sure there is something in the content variable
                document.getElementById(container).innerHTML = content; //Change the inner content of your div to the newly retrieved content ****
                include(_PROJECTURL + 'content/js/sifr-config.js');
            }
        }
    }
        xmlhttp.send(null) //Nullify the XMLHttpRequest
return;
}

function include(file)  
{  

    var script  = document.createElement('script');  
    script.src  = file;  
    script.type = 'text/javascript';  
    script.defer = true;  

    document.getElementsByTagName('head').item(0).appendChild(script);  

} 