try this
create sidebar-2.php
add this function in /wp-includes/general-template.php
///////////////////////////////////
function get_sidebar-2() {
do_action( ‘get_sidebar’ );
if ( file_exists( TEMPLATEPATH . ‘/sidebar-2.php’) )
load_template( TEMPLATEPATH . ‘/sidebar-2.php’);
else
load_template( ABSPATH . ‘wp-content/themes/default/sidebar.php’);
}
//////////////////////////////////