function _load_gidas() {

var linkas = '/renginiai/index.asp';
var gidas_div_id = '_gidas';
content = document.getElementById(gidas_div_id).innerHTML;
document.getElementById(gidas_div_id).innerHTML = 'Palaukite... <img src="http://img.lrytas.lt/img/indicator.gif" alt="" />';

var xmlhttp=false;
    /*@cc_on @*/
    /*@if (@_jscript_version >= 5)
    try {
        xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
    } catch (e) {
        try { xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); } catch (E) { xmlhttp = false; }
    }
    @end @*/
    if(!xmlhttp) { xmlhttp=new XMLHttpRequest(); }
    xmlhttp.open('GET', linkas, true);
    xmlhttp.onreadystatechange = function() {
        if(xmlhttp.readyState==4) {
	  if (xmlhttp.status == 200 && xmlhttp.responseText.length > 10)
	  { document.getElementById(gidas_div_id).innerHTML = xmlhttp.responseText; 
	  //  document.getElementById('bals_info_hidden').innerHTML = xmlhttp.responseText; 
	  }
          else
	  { document.getElementById('gidas_div_id').innerHTML = content; }
	}
    }
    xmlhttp.send(null);
};
