<!-- /money/YM_transaction/ -->
                        <input class="inButton btn" type="button" value="<?php 
        print Core::translateToCurrentLocale('In');
        ?>
">
                        <input class="outButton btn" type="button" value="<?php 
        print Core::translateToCurrentLocale('Out');
        ?>
">
                    </div>
                </div>
                <div class="alert submitValueDialog">
                    <div class="formArrow"></div>
                    <a class="submitValueDialog-close" ><img src="/public/img/other/close_wallet.png"></a>
                    <?php 
        $systems = CurrencyPaymentSystem::availablePaymentSystems($value['CurName']);
        if (count($systems) > 1) {
            ?>
                    <select id="payment-select">
                        <?php 
            foreach ($systems as $system) {
                ?>
                            <option value="<?php 
                print $system['name'];
                ?>
"><?php 
                print $system['trade_name'];
                ?>
</option>
                        <?php 
            }