My guess is that you are not using the correct window name. Typically the "- JMP".
You can use this JSL to loop through the window names to see what their names are.
Names Default To Here( 1 );
i = 1;
While( Window( i ) << get window title != {},
Show( Window( i ) << get window title );
i++;
);
Jim