my %actions = ( HowTo => \&mHowTo, Tutorials => \&mTutorials, ... ); ... sub tSupport { my $view = $Request->item("View")->item(); return exists($actions{$view}) ? $actions{$view}->() : mSearch(); }