
  post = function(target,event) {
    var form = document.forms[0];
    form.action = target;
    if (form.event) form.event.value = event;
    form.submit();
  }

  ask = function(question) {
    return confirm(question);
  }

