Die Variablen login und password müssen/dürfen seit der Umstellung auf Session basier...
[kivitendo-erp.git] / js / vendor_selection.js
1 function vendor_selection_window(input_name, input_id) {
2   var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
3   var name = document.getElementsByName(input_name)[0].value;
4   url = "common.pl?" +
5     "action=vendor_selection&" +
6     "name=" + escape(name) + "&" +
7     "input_name=" + escape(input_name) + "&" +
8     "input_id=" + escape(input_id)
9   //alert(url);
10   window.open(url, "_new_generic", parm);
11 }