function setStatus(msg) {
  window.status = ' ' + msg + "...";
  return true;
}

function clrStatus() {
  window.status = ' ';
  return true;
}