Same Content div to Multiple Tabs

Hi,

I want to assign same div to Multiple Tabs.

an Example of code is given below:

[code]


<div id="html_1" >Some content</div>


<script>
    tabbar = new dhtmlXTabBar("a_tabbar", "top");
    tabbar.setImagePath("/Scripts/dhtmlxTabber/imgs/");


    tabbar.addTab("a1", "Tab 1-1", "100px");
    tabbar.addTab("a2", "Tab 1-2", "100px");
    tabbar.addTab("a3", "Tab 1-3", "100px");
    tabbar.setContent("a1", "html_1");
    tabbar.setContent("a2", "html_1");
    tabbar.setContent("a3", "html_1");

</script>[/code]

but in the View i get the “html_1” applied to Last tab ie “a3”.

Can you tell how can i get the html_1 in all the Tabs.

Thanks,
Huzefa