Index: layout.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/newswire/layout.css,v
retrieving revision 1.4
diff -u -r1.4 layout.css
--- layout.css	12 Aug 2008 16:44:42 -0000	1.4
+++ layout.css	13 Sep 2008 22:55:02 -0000
@@ -30,6 +30,7 @@
 .width-2-30,
 .width-10-190,
 .width-18-350,
+.width-20-390,
 .width-24-470,
 .width-28-550,
 .width-30-590,
@@ -65,6 +66,7 @@
 .width-2-30     { width: 30px; }
 .width-10-190   { width: 190px; }
 .width-18-350   { width: 350px; }
+.width-20-390   { width: 390px; }
 .width-24-470   { width: 470px; }
 .width-28-550   { width: 550px; }
 .width-30-590   { width: 590px; }
@@ -74,6 +76,9 @@
 div.width-48-950 { width: 950px; margin: 0; }
 .width-960       { width: 960px; margin: 0; }
 
+/* Adjust margin right sidebar margin
+   needed when right-top-box or right-bottom-box is active*/
+#right-col-wrapper #right_2 { margin-right: 8px; }
 
 /* Misc classes and elements
 *******************************/
Index: newswire.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/newswire/newswire.info,v
retrieving revision 1.4
diff -u -r1.4 newswire.info
--- newswire.info	21 Aug 2008 21:58:40 -0000	1.4
+++ newswire.info	13 Sep 2008 22:41:21 -0000
@@ -21,6 +21,10 @@
 regions[content] = Content (col 2)
 regions[right_2] = Right 2 (col 3)
 regions[right] = Right (col 4)
+
+regions[right_top_box] = Right top box (390px)
+regions[right_bottom_box] = Right bottom box (390px)
+
 regions[content_bottom_left] = Content bottom col 1 (470px)
 regions[content_bottom_content] = Content bottom col 2 (470px)
 regions[content_bottom_full_width] = Content bottom (950px)
Index: page.tpl.php
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/newswire/page.tpl.php,v
retrieving revision 1.7
diff -u -r1.7 page.tpl.php
--- page.tpl.php	8 Sep 2008 18:55:01 -0000	1.7
+++ page.tpl.php	13 Sep 2008 23:28:54 -0000
@@ -140,18 +140,42 @@
         <?php endif; ?>
 		<?php print $content; ?> 
       </div> <!-- /content -->
-	  <?php if ($right_2): ?>
-	    <!-- RIGHT 2 -->
-        <div id="right_2" class="width-10-190">
-          <?php print $right_2; ?>
-        </div> <!-- /right 2 -->
-      <?php endif; ?>
-	  <?php if ($right): ?>
-	    <!-- RIGHT -->
-        <div id="right" class="width-10-190 last">
-          <?php print $right; ?>
-        </div> <!-- /right -->
-      <?php endif; ?>
+			
+		<?php if (($right_top_box || $right_bottom_box) && ($right_2 && $right)): ?>
+			<div id="right-col-wrapper" class="width-20-390 last">
+			
+			  <?php if (($right_top_box) && ($right_2 && $right)): ?>
+					<div id="right-top-box" class="width-20-390 last nofloat">
+						<?php print $right_top_box; ?>
+					</div> <!-- /right 2 -->
+			  <?php endif; ?>
+			
+		<?php endif; ?>
+		
+			<?php if ($right_2): ?>
+				  <!-- RIGHT 2 -->
+					<div id="right_2" class="width-10-190">
+						<?php print $right_2; ?>
+					</div> <!-- /right 2 -->
+				<?php endif; ?>
+				
+			 <?php if ($right): ?>
+				  <!-- RIGHT -->
+					<div id="right" class="width-10-190 last">
+						<?php print $right; ?>
+					</div> <!-- /right -->
+				<?php endif; ?>
+				
+			<?php if (($right_bottom_box) && ($right_2 && $right)): ?>
+				<div id="right-bottom-box" class="width-20-390 last nofloat">
+					<?php print $right_bottom_box; ?>
+				</div> <!-- /right 2 -->
+			<?php endif; ?>
+				
+		<?php if (($right_top_box || $right_bottom_box) && ($right_2 && $right)): ?>
+			</div> <!-- /right cols wrapper  -->
+		<?php endif; ?> 	
+		
 	</div> <!-- /col_wrapper-->
 	<?php if ($content_bottom_full_width || $content_bottom_left || $content_bottom_content): ?>
 	  <!-- CONTENT BOTTOM -->
Index: style.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/themes/newswire/style.css,v
retrieving revision 1.10
diff -u -r1.10 style.css
--- style.css	13 Sep 2008 01:41:22 -0000	1.10
+++ style.css	13 Sep 2008 23:33:45 -0000
@@ -231,6 +231,14 @@
   background: #FFF; 
 }
 
+/*** Right top box & Right bottom box ***/
+#right-top-box {}
+
+#right-bottom-box {
+  padding-top: 1em;
+}
+
+
 /*** If 4 cols 
      Constrain text fields ***/
 .four-column .form-text {

