yes u can.......but it needs little work..................here it goes.......................
1) add this in functions.php
<?php
if ( function_exists('register_sidebars') )
register_sidebars(2);
?>
2) Create a file leftsidebar.php and add this
<div>
<ul>
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>
<?php endif; ?>
</ul>
</div>
3)add this to index.php
<?php include (TEMPLATEPATH . '/leftsidebar.php'); ?>
Let me know if any questions...............
Thanks
A