// text is actually HTML
// TODO: make text clickable
sS hPopDownButtonWithText(S text, S... entries) {
ret (empty(text) ? "" : text + " ") + hPopDownButton(entries);
}
sS hPopDownButtonWithText(S text, Cl entries) {
ret hPopDownButtonWithText(text, asStringArray(entries));
}