function setStatusBar(msg) {
  window.status = msg;
  return true;
}
function resetStatusBar() {
  window.status = "";
  return true;
}
