function hidePar(tz) {
	if (!tz) {
		window.location.reload();
	}
	else {
//		window.location.reload(); //doplněno - nechat pokud nebude dělat rotyku
		var x=document.getElementsByTagName("tr");
//		alert(x.length);
		for (var div=0; div<=x.length-1; div++){
			var tridaDivu=x[div].className;
//    alert(tridaDivu);
			if ((tridaDivu.length==2)&&(tridaDivu != tz)) {
				x[div].style.display = 'none';
			}
      else {
        x[div].style.display = '';
      };
		};
	};
}
