function _ajax_to_div_inzertko(url, div_id) {
	xmlReq=getXmlHTTP();
	xmlReq.open("GET", url, true);
	$LastLink = $(document).data("CurLink");
	$(document).data("LastLink", $LastLink);
	$(document).data("navigacia", null);
	$(document).data("CurLink", url);
	xmlReq.onreadystatechange=function(){
		window.scrollTo(0,190);
		$('#wait_box').dialog('open');
		if(xmlReq.readyState==4){
			pageTracker._trackPageview(url);
			$("#" + div_id).show('clip');
			var xmlDoc = xmlReq.responseText;
			divId = document.getElementById(div_id);
			divId.innerHTML = xmlDoc;
			$('#wait_box').dialog('close');
			var x = divId.getElementsByTagName("script");
			for(var i=0;i<x.length;i++) {
				// eval(x[i].text);
			}
			updateLinks();
			$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
				return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
			});
		}
	}
	xmlReq.send(null);
}
