
function textOnFocus(textBox, text) {
  if (textBox.value == "<" + text +">" ) {
    textBox.value = "";
  }
}

function textOnBlur(textBox, text) {
  if (textBox.value == "") {
    textBox.value = "<" + text + ">";
  }
}
