X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/d629acd82a27e980899a044ca8b0f4becc8e94bb..6dd6719d91cf5a48acb6fb3731f9e143d7a7d83b:/js/dunning.js diff --git a/js/dunning.js b/js/dunning.js index 7853d2165..9a794a985 100644 --- a/js/dunning.js +++ b/js/dunning.js @@ -1,14 +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) + "&" + - "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); }