function pokazdiva(tableName) {
		 if (document.getElementById) {
		 tableName = document.getElementById(tableName);
		 // tutaj robimy 'trzymacz' dla NN6+ i MSIE 5+
		 } 
		 else if (document.all) {
		 tableName = document.all[tableName];
		 // a tutaj 'trzymacz' dla MSIE 4
		 }
		 if (tableName.style.display == 'none')  { 
		   tableName.style.display = ''
		}
		else { 
		  tableName.style.display = 'none'
		}
}
function ukryjdiva(tableName) {
		 if (document.getElementById) {
		 tableName = document.getElementById(tableName);
		 // tutaj robimy 'trzymacz' dla NN6+ i MSIE 5+
		 } 
		 else if (document.all) {
		 tableName = document.all[tableName];
		 // a tutaj 'trzymacz' dla MSIE 4
		 }
		 if (tableName.style.display == 'none')  { 
		   tableName.style.display = ''
		}
		else { 
		  tableName.style.display = 'none'
		}
}


