init.js 675 B

12345678910111213141516171819202122232425
  1. /**
  2. * init.js
  3. * -------
  4. * Grabs the text from the SquirrelMail field and submits it to
  5. * the squirrelspell.
  6. *
  7. * $Id$
  8. *
  9. * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
  10. * @version $Date$
  11. */
  12. /**
  13. * This is the work function.
  14. *
  15. * @param flag tells the function whether to automatically submit the
  16. * form, or wait for user input. True submits the form, while
  17. * false doesn't.
  18. * @return void
  19. */
  20. function sqspell_init(flag){
  21. textToSpell = opener.document.forms[0].subject.value + "\n" + opener.document.forms[0].body.value;
  22. document.forms[0].sqspell_text.value = textToSpell;
  23. if (flag) document.forms[0].submit();
  24. }