// JavaScript Document
function showMenu(oType,districtID,path) {
	
	var url = path+"/inc/ajax/menu.php";
	var params = "oType="+oType+"&districtID="+districtID;
	http.open("GET", url+"?"+params, true);
	http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
	http.setRequestHeader("Content-Type", "text/html; charset=windows-1250");
    http.onreadystatechange = handleResponseMenu;
    http.send(null);
    document.getElementById('menudiv').innerHTML = '<div align="center" style=\"height:29px; padding-top:6px;\"><img src="http://www.comreal.sk/images/body/working.gif" width="16" height="16"></div>';
}



function handleResponseMenu() {
    if(http.readyState == 4){
        if(http.status == 200 && http.responseText != '') {
            var response = http.responseText;
            var update = new Array();

            if(response.indexOf('|' != -1)) {
                update = response.split('|');
                document.getElementById('menudiv').innerHTML = update[1];
                document.getElementById('abovemenu').style.display = 'none';
				location.href=update[2];
                eval(update[4]);
            }
        }
    }
}

function waitForMenu() {
  if(!document.getElementById('menudiv').complete) {
    setTimeout('waitForMenu()',10);
  }
}

