function button (form, cmd, id) {
  form.cmd.value = cmd;
  if (id) {
    form.id.value = id;
  }
  form.submit(); 
}
