Mānuka Honey is highly valued by the consumer and those that are licensed to use the quality mark. The UMF™ quality mark is registered in all key consumer markets.
The UMF grading system has two components which are expressed on any UMF honey product
1
LABEL
The label claim that it is genuine Mānuka Honey.
2
NUMBER
This represents the unique signature compounds characteristic of this honey which ensure purity and quality. These include: the key markers of Leptosperin, DHA and Methylglyoxal.
function numberFunction() {
var input, filter, table, tr, td, i, txtValue;
input = document.getElementById("numberInput");
filter = input.value.toUpperCase();
table = document.getElementById("memberTable");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
if (td) {
txtValue = td.textContent || td.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
function nameFunction() {
var input, filter, table, tr, td, i, txtValue;
input = document.getElementById("nameInput");
filter = input.value.toUpperCase();
table = document.getElementById("memberTable");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[1];
if (td) {
txtValue = td.textContent || td.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
function resetFunction() {
location.reload();
}