Projekt

Allgemein

Profil

Herunterladen (505 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
54e4131e Moritz Bunkus
function vendor_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?" +
5d557254 Moritz Bunkus
"INPUT_ENCODING=UTF-8&" +
54e4131e Moritz Bunkus
"action=vendor_selection&" +
6b063f3c Moritz Bunkus
"name=" + encodeURIComponent(name) + "&" +
"input_name=" + encodeURIComponent(input_name) + "&" +
"input_id=" + encodeURIComponent(input_id)
54e4131e Moritz Bunkus
//alert(url);
window.open(url, "_new_generic", parm);
}