// Polo kepek csereje

function xmlhttpPost_polo(strURL) {
	var xmlHttpReq = false;
    var self = this;
// Mozilla/Safari
	if (window.XMLHttpRequest) {
    	self.xmlHttpReq = new XMLHttpRequest();
    } else if (window.ActiveXObject) {
// IE
    	self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('POST', strURL, true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function() {
    	if (self.xmlHttpReq.readyState == 4) {
        	updatepage_polo(self.xmlHttpReq.responseText);
        }
    }
    self.xmlHttpReq.send(getquerystring_polo());
}
function getquerystring_polo() {
//	var form = document.forms['turkal'];
//  var word = form.termek_id.value;
//    qstr = 'eid=' + escape(eid);  // NOTE: no '?' before querystring
	qstr = '';
    return qstr;
}
function updatepage_polo(str){
	document.getElementById("polo_layer").innerHTML = str;
	setTimeout("xmlhttpPost_polo('block/polo.html')",10000);
}