function win(url) //ie window { rpwin(url); } function dlg(url, w, h) //modal dialog { rpdlg(url, w, h, 1); } function pop(url, w, h) //modeless { rpdlg(url, w, h, 2); } function rpwin(url, w, h) { var feature = "scrollbars=yes,resizable=yes,status=yes,toolbar=yes,menubar=yes,location=yes"; if (w != null && h != null) feature = "height=" + h + ",width=" + w + ",scrollbars=yes,resizable=yes,status=yes,toolbar=yes,menubar=yes,location=yes"; window.open(url,"",feature) } function rpdlg(url, w, h, typ) { var feature = "status:no; help:no; resizable:yes; scroll:auto" if (w != null && h != null) feature = "dialogWidth:" + w + "px; dialogHeight:" + h + "px; status:no; help:no; resizable:yes; scroll:auto" if (typ == 1) window.showModalDialog(url,"", feature) else if (typ == 2) window.showModelessDialog(url,"", feature) } function goPaMain() { window.PaAdmin.PaMain.location.replace("TabLayout.aspx?tid=11384"); }