//---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- 
function windowOpen(url,windowName,windowWidth,windowHeight)
{
html = window.open(url,windowName,"resizeable=0,scrollbars=0,width="+windowWidth+",height="+windowHeight);
//html.document.belepesForm.referrer.value=window.location;
}
//---------------------------------------------------------
function scrollWindowOpen(url,windowName,windowWidth,windowHeight)
{
html = window.open(url,windowName,"resizeable=0,scrollbars=1,width="+windowWidth+",height="+windowHeight);
}
//---------------------------------------------------------
function hide () {
	for (i=1; i<=6; i++)	{
		document.getElementById("emberek_" + i).style.display = "none";
		}
	}
//---------------------------------------------------------
function bekap (sorsz){
	on();
	hide();
	document.getElementById("emberek_" + sorsz).style.display = "block";
	}
//---------------------------------------------------------
function on () { menu++; }
//---------------------------------------------------------
function off ()	{ setTimeout("check()",0); }
//---------------------------------------------------------
function check () {
	menu--;
	if (menu==0) { hide(); }
	}
