you would? I'd think you could just take like.. 40% of screen_width for one list and 15 for the other 4, with variables you should be able to just do something like:..
//THIS IS 100% PSEUDOCODE
offset = 0
server_name_list_width = screen_width * 0.4
map_list_width = screen_width * 0.15
mode_list_width = screen_width * 0.15
players_list_width = screen_width * 0.15
ping_list_width = screen_width * 0.15
draw_server_name_list_at_offset()
offset += server_name_list_width
draw_map_list_at_offset()
offset += map_list_width
draw_mode_list_at_offset()
offset += mode_list_width
draw_players_list_at_offset()
offset += map_players_width
draw_ping_list_at_offset()
//END PSEUDOCODE
Multi column lists would make that easier though