    function flash_window( url, id, width, height )
    {
      flash = window.open( url, id, 'toolbar=no,scrollbars=no,location=no,statusbar=no,menubar=no,resizable=no,width=' + width + ',height=' + height + ',left=2,top=2' );
      flash.focus();
    }

