Setting the border on a specific window

I have several windows created with various objects attached. All windows are created using
dhxWins = new dhtmlXWindows() and dhxWins.createWindow()
I know I can adjust the border property in the style sheet to change the window border. What I need to do is dynamically change the border on specific windows.

So for example I create two windows:
w1 = dhxWins.createWindow(“w1”, 30, 40, 320, 240);
w2 = dhxWins.createWindow(“w2”, 300, 40, 320, 240);

Is there any way I can alter the border property of just w1?
Something like:
w1.style.border=“thick solid #FF00FF”;

Hello,

doesn’t w1.style.border=“thick solid #FF00FF”; work?

I couldn’t find it documented anywhere so I hadn’t tried it. Sure enough it does work.
Wow that embarrassing…
Thanks!

This approach is not public. There therefore, it was not documented.