// Input Focus
<!--
function glow(el, arg) {
  if (arg) {
    el.className = "glow";
  } else {
    el.className = "text";
  }
}
-->