procedure TForm1.OnIconNotify(var Message: TMessage);
begin
if not Busy then
begin
Busy :=true;
if Message.LParam=WM_LBUTTONDOWN then
begin
//form1.Show;
form1.SetFocus;
//if Application.MessageBox('Are you sure close?','Exit',MB_YESNO)=IDYES then Close;
//form1.BringToFront;
//popupmenu1.Popup(mouse.CursorPos.X,mouse.CursorPos.Y);
end;