function openWin(url){
	win = window.open(url, 'info_o_hraci', "statusbar=no, width=700, height=570, scrollbars=yes, resizable ");
	win.focus();
}

function OpenMatch(param){
	width = 700;
	height = 590;
	informace = window.open("/mifa/info_zapas.php?zid=" + param, "InfoZapas", "width=" + width + ", height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function OpenRep(param){
	width = 700;
	height = 590;
	informace = window.open("/mifa/info_zapas.php?zobr=1&zid=" + param, "InfoZapas", "width=" + width + ", height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}

function showSub(num)
{
	for (var i=1; i<=5; i++)
	{
		tmp = document.getElementById('sub_'+i);
		if (tmp != null) tmp.style.display = 'none';
	}

	var tmp = document.getElementById('nav');
    if (tmp != null) tmp.style.display = 'none';

	var tmp = document.getElementById('sub_'+num);
    if (tmp != null) tmp.style.display = 'block';

//	var t1 = null;     
//  window.clearTimeout(t1);
//  var t1=window.setTimeout("showNav()", 7000);
}

function showNav()
{   
	for (var i=1; i<=5; i++)
	{
		tmp = document.getElementById('sub_'+i);
		if (tmp != null) tmp.style.display = 'none';
	}

	var tmp = document.getElementById('nav');
    if (tmp != null) tmp.style.display = 'block';
}
