My @Whois window open a new window everytime a new user login...is it possible have the all the whois in the same window?

Code:
 
raw 311:*:{ 
  Window -a @Whois- $+ $2 100 100 490 180
  clear @Whois- $+ $2
  titlebar @Whois- $+ $2 ( $+ $3 $+ @ $+ $4 $+ )
  aline @Whois- $+ $2 $chr(160)
  aline @Whois- $+ $2 10Nick:4 $2 
  aline @Whois- $+ $2 10Real Name:4 $6 $+ 
  aline @Whois- $+ $2 10Address:4 $3 $+ @ $+ $4 $+  
  halt 
}
raw 319:*:{ aline @Whois- $+ $2 10Channels:4 $3- $+  | halt }
raw 312:*:{ aline @Whois- $+ $2 10Server:4 $3 10Network:4 $4- | halt }
raw 301:*:{ aline @Whois- $+ $2 10Away msg:4 $3- | halt }
raw 307:*:{ aline @Whois- $+ $2 10NickServ:4 $2 10has identified for this nick. | halt }
raw 313:*:{ aline @Whois- $+ $2 10IrcOp:4 yes | halt }
raw 317:*:{ aline @Whois- $+ $2 10Idle Time:4 $duration($3) 10Signed on @4 $asctime($4,dd/mm/yy HH:nn) | halt }
raw 318:*:{ aline @Whois- $+ $2 $chr(160) | halt }

menu @Whois* {
  query:query $$1
  -
  ctcp/dcc
  .ctcp
  ..ping:ctcp $$1 ping
  ..time:ctcp $$1 time
  ..version:ctcp $$1 version
  .dcc
  ..file:dcc send $$1
  ..chat:dcc chat $$1
  ignore 
  .+ignore:ignore $$1 3
  .- ignore:ignore -r $$1 3
  -
  close:window -c $window(@Whois*,1)
}