Zuviel in b24afac71c944 entfernt. Historie und Wiedervorlage wieder anzeigen
[kivitendo-erp.git] / js / dunning.js
index 2639ab8..9a794a9 100644 (file)
@@ -1,15 +1,13 @@
 function set_email_window(input_subject, input_body, input_attachment) {
-  var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
+  var parm = centerParms(800,600) + ",width=800,height=600,status=yes,scrollbars=yes";
   var url = "dn.pl?" +
+    "INPUT_ENCODING=UTF-8&" +
     "action=set_email&" +
-    "login=" +  encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+
-    "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" +
-    "path=" + encodeURIComponent(document.getElementsByName("path")[0].value) + "&" +
-    "email_subject=" + escape(document.getElementsByName(input_subject)[0].value) + "&" +
-    "email_body=" + escape(document.getElementsByName(input_body)[0].value) + "&" +
-    "email_attachment=" + escape(document.getElementsByName(input_attachment)[0].value) + "&" +
-    "input_subject=" + escape(input_subject)  + "&" +
-    "input_body=" + escape(input_body)  + "&" +
-    "input_attachment=" + escape(input_attachment);
+    "email_subject=" + encodeURIComponent(document.getElementsByName(input_subject)[0].value) + "&" +
+    "email_body=" + encodeURIComponent(document.getElementsByName(input_body)[0].value) + "&" +
+    "email_attachment=" + encodeURIComponent(document.getElementsByName(input_attachment)[0].value) + "&" +
+    "input_subject=" + encodeURIComponent(input_subject)  + "&" +
+    "input_body=" + encodeURIComponent(input_body)  + "&" +
+    "input_attachment=" + encodeURIComponent(input_attachment);
   window.open(url, "_new_generic", parm);
 }