--- js/modal.js	2010-08-12 00:49:43.752661800 +0200
+++ js/@modal.js	2010-08-12 00:49:50.190030000 +0200
@@ -37,6 +37,8 @@
         type: 'scale',
         width: .8,
         height: .8,
+		addWidth: 0,
+		addHeight: 0
       },
       modalOptions: {
         opacity: .55,
@@ -65,9 +67,14 @@
         var height = settings.modalSize.height;
       }
 	  
+	  // Define the additional pixel vars.
+	  var addWidth = settings.modalSize.addWidth;
+	  var addHeight = settings.modalSize.addHeight;
+	  
+	  // Use the additinol pixels for creating the width and height.
       $('div.ctools-modal-content', context).css({
-        'width': width + 'px',
-        'height': height + 'px'
+        'width': width + addWidth + 'px',
+        'height': height + addHeight + 'px'
       });
       $('div.ctools-modal-content .modal-content', context).css({
         'width': (width - 25) + 'px',
