1 function centerParms(width,height,extra) {
2 xPos = (screen.width - width) / 2;
3 yPos = (screen.height - height) / 2;
5 string = "left=" + xPos + ",top=" + yPos;
8 string += "width=" + width + ",height=" + height;
13 function set_history_window(id) {
14 var parm = centerParms(800,500) + ",width=800,height=500,status=yes,scrollbars=yes";
17 "action=show_history&" +
18 "login=" + encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+
19 "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" +
20 "path=" + encodeURIComponent(document.getElementsByName("path")[0].value) + "&" +
21 "longdescription=" + "&" +
22 "input_name=" + escape(id) + "&"
23 window.open(url, "_new_generic", parm);