+ float yPoint;
+
+ if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionTop ) {
+ yPoint = ( 64.0 + [[_window screen] visibleFrame].origin.y - [_window frame].size.height );
+ } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionBottom ) {
+ yPoint = -( [[_window screen] frame].size.height - ( [_window frame].size.height + 32.0 + [[_window screen] visibleFrame].origin.y) );
+ } else if ( [(ITTransientStatusWindow *)_window verticalPosition] == ITWindowPositionMiddle ) {
+ yPoint = ( [_window frame].size.height - [[_window screen] visibleFrame].size.height) / 2;
+ }
+
+ /*if ( [(ITTransientStatusWindow *)_window horizontalPosition] == ITWindowPositionLeft ) {