<!--

function popup(WindowName, URL, iWidth, iHeight, iCenter, iResizable, iScrollbars, iToolbar, iLocation, iStatusbar, iMenubar, iLeft, iTop) {
   var strOptions = '';
   
   if (iCenter==1) {
      iLeft = (screen.width - iWidth) / 2;
      iTop = (screen.height - iHeight) / 2;
   }

   if (iTop > 20) { iTop = iTop - 20; }

   strOptions += 'width=' + iWidth;
   strOptions += ',height=' + iHeight;
   strOptions += ',top=' + iTop;
   strOptions += ',left=' + iLeft; 
   strOptions += ',toolbar=' + iToolbar;
   strOptions += ',scrollbars=' + iScrollbars;
   strOptions += ',location=' + iLocation;
   strOptions += ',statusbar=' + iStatusbar;
   strOptions += ',menubar=' + iMenubar;
   strOptions += ',resizable=' + iResizable + '';
   
   imageWindow = window.open(URL, WindowName, strOptions);

   imageWindow.focus();
}

//-->
