function inputFocused(inp, txt) {
  if (inp.value == txt) {
    inp.value = "";
    inp.style.color = "#000000";
  }
}

function inputBlurred(inp, txt) {
  if (inp.value.length == 0) {
    inp.value = txt;
    inp.style.color = "#333333";
  }
}