Try...

Code:
menu nicklist {
  $repnick($$1) : msgs $$1
}

alias repnick {
  if ($1 == Andy) return Andrew Gabriel
  elseif ($1 == jcle) return Your Name Here
  elseif ($1 == DancingQueen) return Fred Astaire
  elseif ($1 == John) return John Doe
  elseif ($1 == Joe) return Joe Bloggs 
  else return $1
}

alias msgs { 
  msg $chan $+($chr(2),$repnick($$1),$chr(2),:) $input(Send Message:,e,Send message to $$1)
}