kivitendo/js/show_vc_details.js @ 4a663bf8
fb4d2ffa | Moritz Bunkus | function show_vc_details(vc) {
|
||
var width = 750;
|
||||
var height = 550;
|
||||
var parm = centerParms(width, height) + ",width=" + width + ",height=" + height + ",status=yes,scrollbars=yes";
|
||||
var vc_id = document.getElementsByName(vc + "_id");
|
||||
if (vc_id)
|
||||
vc_id = vc_id[0].value;
|
||||
url = "common.pl?" +
|
||||
5d557254 | Moritz Bunkus | "INPUT_ENCODING=UTF-8&" +
|
||
fb4d2ffa | Moritz Bunkus | "action=show_vc_details&" +
|
||
6b063f3c | Moritz Bunkus | "vc=" + encodeURIComponent(vc) + "&" +
|
||
"vc_id=" + encodeURIComponent(vc_id)
|
||||
fb4d2ffa | Moritz Bunkus | //alert(url);
|
||
window.open(url, "_new_generic", parm);
|
||||
}
|