function setPreview(imgid, objektid){
    //alert('Chaning img:'+imgid+' o: '+objektid);
    var xmlHttp = null;
    try {
        // Mozilla, Opera, Safari sowie Internet Explorer (ab v7)
         xmlHttp = new XMLHttpRequest();
    } catch(e) {
        try {
            // MS Internet Explorer (ab v6)
            xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(e) {
            try {
                // MS Internet Explorer (ab v5)
                xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
            } catch(e) {
                xmlHttp  = null;
            }
        }
    }
    if (xmlHttp) {
        xmlHttp.open('GET', '/ajax/'+imgid+'/'+objektid, true);
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {
               //alert(xmlHttp.responseText);
            }
        };
        xmlHttp.send(null);
    }
}
