--- uc_vat.admin.inc	2010-10-02 01:39:58.006488600 +0200
+++ uc_vat.admin.incN	2010-10-02 01:34:43.506012000 +0200
@@ -1,6 +1,7 @@
 <?php
 // $Id: uc_vat.admin.inc,v 1.7 2010/09/17 19:55:34 longwave Exp $
 
+
 /**
  * Module configuration form.
  */
@@ -100,6 +101,20 @@ function uc_vat_settings_form($form_stat
     '#default_value' => variable_get('uc_vat_hide_checkout_exclusive', FALSE),
   );
 
+  $form['checkout']['uc_vat_calculate_shipping_taxes'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Calculate !tax for shipping proportional to products taxes.', array('!tax' => $tax)),
+    '#description' => t('Calculates shipping !tax and applies these taxes seperated by !tax.', array('!tax' => $tax)),
+    '#default_value' => variable_get('uc_vat_calculate_shipping_taxes', FALSE),
+  );
+
+  $form['checkout']['uc_vat_show_shipping_wo_tax'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Show shipping costs without !tax as new line item.', array('!tax' => $tax)),
+    '#description' => t('Displays a new line item showing shipping cost without taxes.', array('!tax' => $tax)),
+    '#default_value' => variable_get('uc_vat_show_shipping_wo_tax', FALSE),
+  );
+
   $form['advanced'] = array(
     '#type' => 'fieldset',
     '#title' => t('Advanced options'),
@@ -114,3 +129,4 @@ function uc_vat_settings_form($form_stat
 
   return system_settings_form($form);
 }
+
