function ReceivedFocus(ctl) {
  "use strict";
  if (ctl.value === "Search by keywords" || ctl.value === "Enter E-mail Address") {
    ctl.value = "";
  }
}
function LostFocus(ctl, message) {
  "use strict";
  if (ctl.value === "") {
    ctl.value = message;
  }
}
