How to set statusbar height of windows

Hi :

i am using dhtmlxwindow of version v.2.6 build 100722,and now want to set height of statusbar as following,but it can not work correctly,how should i do?

detailStatus = w1.attachStatusBar();
alert(w1.vs[w1.av].sbHeight);
w1.vs[w1.av].sbHeight = 40;
alert(w1.vs[w1.av].sbHeight);
w1.setText(“aaaaaa”);

Hi
Try to apply the next styles:
.dhtmlx_skin_dhx_skyblue div.dhxcont_sb_container div.dhxcont_statusbar{
height: 45px !important;
border: 1px solid green;
background-image: none;
background-color: #b0c4de;
}
.dhtmlx_skin_dhx_skyblue div.dhxcont_sb_container {
height: 50px !important;
background-image: none;
background-color: #b0c4de;
}

In the code use the next NOT public solution:
dhxWins.setSkin(“dhx_skyblue”);
win = dhxWins.createWindow(‘winId’, 10, 10, 400, 350);
win.skin = “”;
statusBar = win.attachStatusBar();
dhxWins.skin = “dhx_skyblue”;

And change the bg-image (i deleted it, but if you need an animation process - you need to use your own picture).