var names;
names= new Array(0);
        names.push("Adams,Eric");
        names.push("Busa,Peter");
        names.push("Comperetta,Vince");
        names.push("Duffy,Owen");
        names.push("Kanas,Bill");
        names.push("Laviolette,Mike");
        names.push("Macchiarella,Nick");
        names.push("Pagnotti,Robert");
        names.push("Shave,Steve");
        names.push("Starr,Gary");
        names.push("Warner,Chris");
        names.push("Wier,Greg");
        names.push("Coons,Steve");
        names.push("Fleming,Bill");
        names.push("Hughes,Chuck");
        names.push("Kemner,Richard");
        names.push("Lawyer,Tony");
        names.push("Parker,Michael");
        names.push("Suidy,Jackie");
        names.push("Teitjan,Theresa");
        names.push("Warner,Leonard");
        names.push("Adams,William");
        names.push("Comperetta,Greg");
        names.push("Donovan,Josh");
        names.push("Guice,Joe");
        names.push("Jones,Don");
        names.push("Kipp,Rita");
        names.push("Leninger,Albert");
        names.push("Miglucci,Nathan");
        names.push("Paul,Daniel");
        names.push("Smi,Bill");
        names.push("Warner,Nick");
        names.push("Bintz,John");
        names.push("Comperetta,Guy");
        names.push("Donovan,Pat");
        names.push("Haught,Steve");
        names.push("Kalkbrenner,Marty");
        names.push("Kufs,Kim");
        names.push("Lenic,Stan");
        names.push("Newcomb,Gerald");
        names.push("Sedlacek,William");
        names.push("Spawn,Dick");
        names.push("Wallard,Garret");
        names.push("Weston,Ed");
        names.push("Macchiarella,Dan");
        names.sort();

    function fixNames(){
                var x;
        for (x=0;x<names.length;x++) {
            var commonName;
            var indCom;
            indCom=(names[x]).indexOf("\,");
            commonName=names[x].substring(indCom+1)+" "+names[x].substring(0,indCom)
            names[x]=commonName;
            //document.writeln(commonName+"<BR>");
        }
    }

    function getNames(){
    fixNames();
    return names;
    }


