* specifies the y-coordinate of the point
* @return a handle to the window that contains the specified point
*/
public static int getWindowFromPoint(int x, int y)
{
POINT point = new POINT();
point.x = x;
point.y = y;
return Extension.WindowFromPoint(point);
}