epic-ts
[kivitendo-erp.git] / js / follow_up.js
1 function follow_up_window() {
2   var width = 900;
3   var height = 700;
4   var parm = centerParms(width, height) + ",width=" + width + ",height=" + height + ",status=yes,scrollbars=yes";
5
6   url = "fu.pl?" +
7     "INPUT_ENCODING=UTF-8&" +
8     "action=add" + "&" +
9     "POPUP_MODE=1";
10
11   var trans_rowcount = document.getElementsByName("follow_up_rowcount");
12
13   if (typeof trans_rowcount != "undefined") {
14     for (i = 1; i <= trans_rowcount[0].value; i++) {
15       var trans_id   = document.getElementsByName("follow_up_trans_id_" + i);
16       var trans_type = document.getElementsByName("follow_up_trans_type_" + i);
17       var trans_info = document.getElementsByName("follow_up_trans_info_" + i);
18
19       url += "&" +
20         "trans_id_"   + i + "=" + encodeURIComponent(typeof trans_id   != "undefined" ? trans_id[0].value   : "") + "&" +
21         "trans_type_" + i + "=" + encodeURIComponent(typeof trans_type != "undefined" ? trans_type[0].value : "") + "&" +
22         "trans_info_" + i + "=" + encodeURIComponent(typeof trans_info != "undefined" ? trans_info[0].value : "");
23     }
24
25     url += "&trans_rowcount=" + encodeURIComponent(trans_rowcount[0].value);
26   }
27
28   //alert(url);
29   window.open(url, "_new_generic", parm);
30 }