var pageIndex = 0;
function doReplacePage(index)
{
	if (index=="+1")
	{
		pageIndex = pageIndex+1;
		//window.location.href = 'index.php/kereso/pager:'+pageIndex;
		adrHTMLRequest('index.php/kereso/pager:'+pageIndex,null,doReplacePager)
	}
	else
	if (index=="-1")
	{
		pageIndex = pageIndex-1;
//		window.location.href = 'index.php/kereso/pager:'+pageIndex;
		adrHTMLRequest('index.php/kereso/pager:'+pageIndex,null,doReplacePager)
	}
	else
	{
//		window.location.href = 'index.php/kereso/pager:'+pageIndex;
		adrHTMLRequest('index.php/kereso/talalatok:'+index,null,doReplacePageContent)
		pageIndex = new Number(index);
	}
//	---window.location.hash = "#"+(pageIndex+1);
	window.location.hash = "#";
	window.scrollTo(0,0);
}
function doReplacePageContent(req)
{
	target = document.getElementById('middle1');
	target.innerHTML =req.responseText; 
}
function doReplacePager(req)
{
	target = document.getElementById('pager');
	target.innerHTML =req.responseText; 
}

function OpenPopup(site)
{
	var win = window.open("index.php/"+site,"statichtml","width=670,height=700");
	win.focus();
}

function OpenPopupScrollable(site) {
	var win = window.open("index.php/"+site,"statichtml","width=680,height=700,scrollbars=yes");
	win.focus();
}

function OpenPopupScrollableResizable(site) {
	var win = window.open("index.php/"+site,"statichtml","width=680,height=700,scrollbars=yes,resizable=yes");
	win.focus();
}
