Project

General

Profile

Download (402 Bytes) Statistics
| Branch: | Tag: | Revision:
1
function popupExternalLinks(x_url) {
2
  var oWindow = null;
3
  var iWidth = 1050;
4
  var iHeight = 700;
5
  oWindow = window.open(x_url, "POPUP_EXTERNAL_LINKS", "dependent=yes,locationbar=yes,menubar=yes,scrollbars=yes,resizable=yes,toolbar=yes,status=no,screenX=0,screenY=0,height="+iHeight+",width="+iWidth); 
6
  if (top.window.opener) {
7
    oWindow.opener = top.window.opener;
8
    oWindow.focus();
9
  }
10
}
11

    
(6-6/7)