var flash6Installed;
flash6Installed = false;


function popup(mtarget, iwidth, iheight)
{
  var targetPage = mtarget;
  var popw = iwidth; // popup width
  var poph = iheight; // popup height
  var w = screen.width;
  var h = screen.height;
  var leftPos = (w - popw > 0) ? parseInt((w - popw) / 2) : 0;
  var topPos = (h - poph > 0) ? parseInt((h - poph) / 2) : 0;
  popupWindow = window.open(targetPage,'popup','width='+popw+',height='+poph+',left='+leftPos+',top='+topPos+',scrollbars=0,resizable=0');
}

