This works fine..

Code:
menu status {
  .rooms
  ..$submenu($popupmenu($1))
}
alias popupmenu {
  if ($1 isnum) {
    if ($gettok(%rooms,$1,44)) { return $v1 : join $v1 }
  }
}


%rooms is a global variable now. i want to extend this further.. how can i make extra menu popups appear for each channel name:
.join - will join the room
.delete - will remove the room from the %rooms variable

any ideas?