I want to pass parameters to my window when I call window.show().
I added in a listener to my window for the show method but it's displaying the parameter as [Object, object].
#window call
var test = 'hi';
tstWin.show(test);
#listener
listeners : {
'show' : function(test){
alert(test.value);
}
}