Open functions.php and after following code:
register_sidebar(array(
'name' => 'Footer Right Column',
'id' => 'footer-column1',
'description' => 'This is a widgetized area.',
'before_widget' => '<div class="footer-column-box">',
'after_widget' => '</div>',
'before_title' => '<div class="footer-column-title">',
'after_title' => '</div>'
));
...paste:
register_sidebar(array(
'name' => 'New Widget Area 1',
'id' => 'new-widget-area-1',
'description' => 'This is a widgetized area.',
'before_widget' => '<div class="new-widget-area-1">',
'after_widget' => '</div>',
'before_title' => '<div class="new-widget-area-1-title">',
'after_title' => '</div>'
));
Now open some file like frontpage1.php and paste following code somewhere (this code will display your widgets):
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('new-widget-area-1')) : ?><?php endif; ?>