function ukaz(co)
{
	var stav = document.getElementById(co).style.display;
	if (stav == 'none')
	{
		document.getElementById(co).style.display = 'block';
	}
	else
	{
		document.getElementById(co).style.display = 'none';
	}
}
function okno(o)
{
	okn=window.open('../inc/okno.php?soubor='+o,'okno','scrollbars=yes,status=yes,toolbar=no,dependent=no,location=no,menu=no,resizable=yes,width=250,height=250,top=150,left=200');
	okn.document.close();
}
function oknou(file,x,y)
{
	ok=window.open(file, '', 'width=' + (x+15) + ',height=' + (y+15) + ',status=no,resizable=yes,toolbar=no,scrollbars=yes,menu=no,top=200,left=200');
	ok.document.write("<html>\n<head>\n<title>Velky obrazek<\/title>\n<\/head>\n<body bgcolor=\"#454545\" leftmargin=\"2\" topmargin=\"2\" marginwidth=\"2\" marginheight=\"2\">\n");
	ok.document.write("<img src=" + file + " alt=\"Big obr\">\n<\/body>\n<\/html>");
	ok.document.close();
}	
function email(jmeno, server)
{
	var adresa = "mailto:" + jmeno + "@" + server;
	document.location.href = adresa;
	return false;
}
