
if (typeof audi_ngw == 'undefined') {
	audi_ngw = {};
}
audi_ngw.konfigurator = {};


// open the Configurator with params
audi_ngw.konfigurator.open = function (paramsAsString) {

s="scrollbars=no,directories=no,menubar=no,toolbar=no,width=1014,height=700,status=yes,resizable=yes";

sat=window.open(paramsAsString,"AKSATELLIT",s);
sat.focus();
};

function loadXMLHttpRequest() {
    var pageRequest = false;
    /*@cc_on
    @if (@_jscript_version >= 5)
        try {
            pageRequest = new ActiveXObject("Msxml2.XMLHTTP");
        }
        catch (e) {
            try {
                pageRequest = new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch (e) {
                pageRequest = false;
            }
        }
    @end
    @*/

    if (!pageRequest && typeof XMLHttpRequest != 'undefined') {
        pageRequest = new XMLHttpRequest()
    }
    return pageRequest;
}
