// JavaScript Document function openNextUL(a) { var theUL = a.nextSibling; while (theUL.tagName != "UL") theUL = theUL.nextSibling; if (theUL.className == "NaviULclosed") theUL.className = ""; return false; } function enableAllergen(inp) { var data = "id="+inp.id+"&value="+(inp.checked?"1":"0"); x_post_data("//ext_api.php?ext=allergen_filter",data,"allergenEnabled",1); } function allergenEnabled(s) { location.reload(); }