here, use that one:

Code:
# -*- coding: cp1252 -*-
# pick a random name

from time import sleep
from random import randint, seed

names = (
    "Benjamin Kaul",
    "Erald Cala",
    "Nevo David",
    "Felix M. L. Caffier",
    "Kristian Korkeila",
    "Torren Sewell",
    "Benjamin Stephan",
    "Marius Kappes",
    "John Hyde",
    "Sebastian Louven",
    "Caits Kloecker",
    "Andrew Swallow",
    "Brandon Marx",
    "Nick Jones",
    "Joel (Ayrus) Maxwell",
    "Michael Foutch",
    "Manjinder Singh Lamba",
    "Benjamin Gentner",
    "Dima Dovgan",
    "Sven Paroth",
    "Eigen Lenk",
    "Christian Behrenberg",
    "Timo Stark",
    "Matthias Wiedhalm",
    "Antonio Fontoura",
    "Josef Mueller",
    "Brian Broyles",
    "Alisa Vinci",
    "Marcio Esper",
    "Peter Müller",
    "michael mcmahon",
    "Dennis van den Broek",
    "Taco Cohen",
    "Matt Coles",
    "bram van holstein",
    "Julian Smart",
    "Johannes Bausch",
    "Michael Chavers",
    "Cristiane Bialetzki",
    "Sergio Novelo",
    "Bryan Amato",
    "Manolis Tsotros",
    "Sean Kennedy",
    "Trevor Braun",
    "Gafgar",
    "Eike von Tils",
    "Ronald Vleeming",
    "Christian Davies",
    "Sven Bolzern",
    "Carlos Freitas",
    "Peter Soxberger",
    "Raimonds Zigurs",
    "Raivis Strogonovs",
    "Balázs Faludi",
    "Alex",
    "Charalambos Theodorou",
    "Frank Niemann"
    )

print "and the winner is..."
for i in xrange(3):
    print str(3-i)
    sleep(1)
seed();
print names[randint(0, len(names)-1)]
print "thank you for using joey's name picker. bye."



simply save it as python file and run it.

greetings, joey.