  function openFlashWindow(file, width, height)
  {
    LeftPosition = (screen.width) ? (screen.width-width)/2.5 : 0;
    TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
      
    oFlashWin = window.open(file,'popup','width='+width+', height='+height+', top='+TopPosition+',left='+LeftPosition+', screenX=10, screenY=200, scrollbars=no, resizable=no, toolbar=no, menubar=no, statusbar=no');
    oFlashWin.focus();
  }

