604a7cf29a8f8b0f805ed0eeb1de6333d6e676b5
[squirrelmail.git] / crypto_settings.js
1 /**
2 * crypto_settings.js
3 * -------------------
4 * Some client-side checks. Nothing fancy.
5 *
6 * $Id$
7 *
8 * @author Konstantin Riabitsev <icon@duke.edu> ($Author$)
9 * @version $Date$
10 */
11
12 /**
13 * This function is the only thing. It is called on form submit and
14 * asks the user some questions.
15 */
16 function checkMe(){
17 if (!document.forms[0].action.checked){
18 alert (ui_makesel);
19 return false;
20 }
21 if (document.forms[0].action.value=="encrypt")
22 cmsg=ui_encrypt;
23 if (document.forms[0].action.value=="decrypt")
24 cmsg=ui_decrypt;
25 return confirm(cmsg);
26 }