X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fdelivery_customer_selection.js;h=89f7740ea7bc63d4d8a6ce0833997e6b2e0ba6f2;hb=96e32f352f3937bdd2deb279a55d94871396d9c0;hp=89a9a897255e7f6cef3c559875d58595a84bb5a2;hpb=5b22b6b5b7dbb290048cd15b3ede7d18cba4d09c;p=kivitendo-erp.git diff --git a/js/delivery_customer_selection.js b/js/delivery_customer_selection.js index 89a9a8972..89f7740ea 100644 --- a/js/delivery_customer_selection.js +++ b/js/delivery_customer_selection.js @@ -2,10 +2,11 @@ function delivery_customer_selection_window(input_name, input_id) { var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes"; var name = document.getElementsByName(input_name)[0].value; url = "common.pl?" + + "INPUT_ENCODING=UTF-8&" + "action=delivery_customer_selection&" + - "name=" + escape(name) + "&" + - "input_name=" + escape(input_name) + "&" + - "input_id=" + escape(input_id) + "name=" + encodeURIComponent(name) + "&" + + "input_name=" + encodeURIComponent(input_name) + "&" + + "input_id=" + encodeURIComponent(input_id) //alert(url); window.open(url, "_new_generic", parm); }