solved the problem using (for sidebar.php)
<?php if (is_home()) {
include (TEMPLATEPATH . “/sidebarblog.php”);
} else {
include (TEMPLATEPATH . “/sidebarother.php”);
}
?>
The code for each of the other sidebars are variations on the original… thanks for your help. Hope this code helps others.