Projekt

Allgemein

Profil

Herunterladen (684 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
54e4131e Moritz Bunkus
function parts_language_selection_window(input_name) {
var parm = centerParms(600,500) + ",width=600,height=500,status=yes,scrollbars=yes";
var name = document.getElementsByName(input_name)[0].value;
url = "ic.pl?" +
5d557254 Moritz Bunkus
"INPUT_ENCODING=UTF-8&" +
54e4131e Moritz Bunkus
"action=parts_language_selection&" +
6b063f3c Moritz Bunkus
"id=" + encodeURIComponent(document.ic.id.value) + "&" +
"language_values=" + encodeURIComponent(document.ic.language_values.value) + "&" +
"name=" + encodeURIComponent(name) + "&" +
"input_name=" + encodeURIComponent(input_name) + "&"
54e4131e Moritz Bunkus
window.open(url, "_new_generic", parm);
}