Another Tabbar Resizing Question

I have tried everything I have read in all of the posts here but nothing is working for my problem.

I am using the following code:

[code]tabbar = new dhtmlXTabBar(“a_tabbar”, “top”);
tabbar.setImagePath(“…/codebase/imgs/”);
tabbar.addTab(“a1”, “Overview”, “65px”);
tabbar.addTab(“a2”, “Documentation”, “110px”);
tabbar.addTab(“a3”, “Vendor Q&A”, “100px”);
tabbar.addTab(“a4”, “Voting Summary”, “120px”);
tabbar.addTab(“a5”, “Notes”, “60px”);
tabbar.addTab(“a6”, “Send Email”, “90px”);
tabbar.addTab(“a7”, “Inbox”, “60px”);
tabbar.setHrefMode(“ajax-html”);
tabbar.setContent(“a1”, “a1”);

tabbar.setContentHref("a2", "../site_hospital_files/pop_tabs/documents_tab.php?status=pending&var1="+holy);
tabbar.setContentHref("a3", "../site_hospital_files/pop_tabs/vendorqa_tab.php?status=pending&var1="+holy);
tabbar.setContentHref("a4", "../site_hospital_files/pop_tabs/voting_page.php?status=pending&var1="+holy);
tabbar.setContentHref("a5", "../site_hospital_files/pop_tabs/notes_tab.php?status=pending&var1="+holy);
tabbar.setContentHref("a6", "../site_hospital_files/pop_tabs/email_tab.php?status=pending&var1="+holy);

tabbar.setContentHref("a7", "../site_hospital_files/pop_tabs/inbox_tab.php?status=pending&var1="+holy);
tabbar.setTabActive("a1");
tabbar.enableAutoReSize(true,true);
tabbar.enableAutoSize(true,true);[/code]

Everything works great but on tab “a5” there is a for notes and as it grows the tab window size does not. Is there a way to get the tab box to grow in height as the person is typing?

Hello
It seems that attached sample can help you
demo.rar (285 KB)