echo ENTRY_PAYMENT_METHOD;
    ?>
</b></td>
                <td class="main"><?php 
    echo get_payment_name($order->info['payment_method'], $order->info['order_id']) . ' (' . $order->info['payment_method'] . ')';
    ?>
</td>
              </tr>
              <?php 
    /* easyBill */
    include DIR_WS_MODULES . 'easybill.info.php';
    // Paypal Express Modul
    if ($order->info['payment_method'] == 'paypal_directpayment' or $order->info['payment_method'] == 'paypal' or $order->info['payment_method'] == 'paypalexpress') {
        require '../includes/classes/paypal_checkout.php';
        require 'includes/classes/class.paypal.php';
        $paypal = new paypal_admin();
        $paypal->admin_notification($oID);
    }
    ## Paypal
    include DIR_FS_EXTERNAL . 'paypal/modules/orders_paypal.php';
    // Banktransfer - START
    $banktransfer_query = xtc_db_query("-- /admin/orders.php\n                                                   SELECT banktransfer_owner,\n                                                         banktransfer_number,\n                                                         banktransfer_bankname,\n                                                         banktransfer_blz,\n                                                         banktransfer_iban,\n                                                         banktransfer_bic,\n                                                         banktransfer_status,\n                                                         banktransfer_prz,\n                                                         banktransfer_fax,\n                                                         banktransfer_owner_email\n                                                    FROM " . TABLE_BANKTRANSFER . "\n                                                   WHERE orders_id = " . $oID);
    $banktransfer = xtc_db_fetch_array($banktransfer_query);
    if ($banktransfer['banktransfer_bankname'] || $banktransfer['banktransfer_blz'] || $banktransfer['banktransfer_number'] || $banktransfer['banktransfer_iban']) {
        ?>
                <tr>
                  <td colspan="2"><?php 
        echo xtc_draw_separator('pixel_trans.gif', '1', '10');
        ?>
</td>
                </tr>
 * @copyright Porttions Copyright 2004 DevosC.com
 * @license http://www.xt-commerce.com.com/license/2_0.txt GNU Public License V2.0
 *
 * For questions, help, comments, discussion, etc., please join the
 * xt:Commerce Support Forums at www.xt-commerce.com
 *
 * ab 15.08.2008 Teile vom Hamburger-Internetdienst geƤndert
 * Hamburger-Internetdienst Support Forums at www.forum.hamburger-internetdienst.de
 * Stand 29.04.2009
 */
require 'includes/application_top.php';
// load classes
require '../includes/classes/paypal_checkout.php';
require_once DIR_FS_INC . 'xtc_format_price.inc.php';
require 'includes/classes/class.paypal.php';
$paypal = new paypal_admin();
// refunding
switch ($_GET['view']) {
    case 'refund':
        if (isset($_GET['paypal_ipn_id'])) {
            $query = "SELECT * FROM " . TABLE_PAYPAL . " WHERE paypal_ipn_id = '" . (int) $_GET['paypal_ipn_id'] . "'";
            $query = xtc_db_query($query);
            $ipn_data = xtc_db_fetch_array($query);
        }
        if ($_GET['action'] == 'perform') {
            // refunding
            $txn_id = xtc_db_prepare_input($_POST['txn_id']);
            $ipn_id = xtc_db_prepare_input($_POST['ipn_id']);
            $amount = xtc_db_prepare_input($_POST['amount']);
            $note = xtc_db_prepare_input($_POST['refund_info']);
            $refund_amount = xtc_db_prepare_input($_POST['refund_amount']);