function getE(a) { if (document.getElementById) var b = document.getElementById(a); else if (document.all) var b = document.all[a]; else if (document.layers) var b = document.layers[a]; return b } function OpenWindow(d, b, a, c) { var e = (screen.width - b) / 2, f = (screen.height - a) / 2; winprops = "resizable=0, height=" + a + ",width=" + b + ",top=" + f + ",left=" + e + "w"; if (c) winprops += ",scrollbars=1"; var g = window.open(d, "_blank", winprops) } function OpenWindow2(query) { var l = (screen.width - 800) / 2; var t = (screen.width - 600) / 2; winprops = 'resizable=0, height=600,width=800,top=' + t + ',left=' + l + 'w'; var f = window.open(query, '_blank'); }
