function createRequestObject(){
var request_o; 
var browser = navigator.appName; 
if(browser == "Microsoft Internet Explorer"){
request_o = new ActiveXObject("Microsoft.XMLHTTP");
}else{
request_o = new XMLHttpRequest();
}
return request_o; 
}

var http = createRequestObject(); 

function getPoptekst(paginaID, popWidth, popHeight, popoverflow,e){
// popoerflow: visible scroll inherit hidden auto

http.open('get', paginaID);
http.onreadystatechange = function() {
if(http.readyState == 4){ 
document.getElementById("innerpop").innerHTML = http.responseText;

if(popoverflow != "") document.getElementById("divPopup").style.display = "";
if(popWidth != "") { 
document.getElementById("divPopup").style.width = popWidth + "px";
document.getElementById("divPopup").style.marginLeft = (popWidth /-2) + "px";
}
if(popHeight != "") document.getElementById("divPopup").style.height = popHeight + "px";
if(popoverflow != "") document.getElementById("divPopup").style.overflow = popoverflow;
	}	
		}
http.send(null);

}

