function loadtxt(piopage) {
	if (window.XMLHttpRequest) {
        req = new XMLHttpRequest();
        req.onreadystatechange = function() {fortothike();};
        req.open("GET", "http://www.kafkas-publications.com/page.asp?id="+piopage, true);
        req.send(null);
    } 
	else if (window.ActiveXObject) {
        req = new ActiveXObject("Microsoft.XMLHTTP");
        if (req) {
            req.onreadystatechange = function() {fortothike();};
            req.open("GET", "http://www.kafkas-publications.com/page.asp?id="+piopage, true);
            req.send();
        }
    }
}    




function fortothike() {
	if (req.readyState == 4) {
        if (req.status == 200) {
            results = req.responseText;
parent.document.getElementById("contents_page").innerHTML = results;
        } else {
parent.document.getElementById("contents_page").innerHTML="error:\n" + req.statusText;
        }
    }
}








