var tArtist = new Array();
var tPerformance = new Array();

tArtist[1] = "Prince/Beyonce";
tArtist[2] = "Melissa Etheridge/Joss Stone";
tArtist[3] = "Simon and Garfunkel";
tArtist[4] = "The Clash Tribute";
tArtist[5] = "Barbra Streisand/Neil Diamond";
tArtist[6] = "Elton John/Eminem";
tArtist[7] = "Ricky Martin";
tArtist[8] = "Aretha Franklin";
tArtist[9] = "Paul McCartney/Jay&nbsp;Z/Linkin Park";
tArtist[10] = "Michael Jackson";
tArtist[11] = "Eric Clapton";
tArtist[12] = "Christina Aguilera";
tArtist[13] = "Madonna/Gorillaz";
tArtist[14] = "Tina Turner";
tArtist[15] = "Whitney Houston";
tArtist[16] = "Celine Dion";
tArtist[17] = "Red Hot Chili Peppers/George Clinton";
tArtist[18] = "Kanye West/Jamie Foxx";
tArtist[19] = "Herbie Hancock";
tArtist[20] = "Bruce Springsteen";
tArtist[21] = "Shania Twain";
tArtist[22] = "Marvin Gaye";
tArtist[23] = "Green Day";
tArtist[24] = "Usher/James Brown";
tArtist[25] = "Mary J. Blige";
tArtist[26] = "U2";
tArtist[27] = "Bob Dylan";
tArtist[28] = "Alan Jackson";
tArtist[29] = "Aerosmith";
tArtist[30] = "Paul McCartney Tribute";
tArtist[31] = "Natalie Cole";
tArtist[32] = "Alanis Morissette";
tArtist[33] = "Southern Rock Medley";
tArtist[34] = "Carlos Santana";
tArtist[35] = "Jamie Foxx/Alicia Keys";
tArtist[36] = "Christina/Patti LaBelle/Pink/Mya";
tArtist[37] = "Bette Midler";
tArtist[38] = "Itzhak Perlman/Pinchas Zukerman, Lynn Harrell";
tArtist[39] = "Faith Hill";
tArtist[40] = "Police Reunion";
tArtist[41] = "Phil Collins/David Crosby";
tArtist[42] = "Bonnie Raitt";
tArtist[43] = "Curtis Mayfield Tribute";
tArtist[44] = "Moby/Blue Man Group/Jill Scott";
tArtist[45] = "John Mayer/John Legend/Corinne Bailey Rae";
tArtist[46] = "Paul Simon";
tArtist[47] = "Eric Clapton/Babyface";
tArtist[48] = "Tsunami Tribute";
tArtist[49] = "Seal";
tArtist[50] = "Four Pianos";

tPerformance[1] = "Hits Medley (2003)";
tPerformance[2] = "Janis Joplin Medley (2005)";
tPerformance[3] = "The Sound of Silence (2003)";
tPerformance[4] = "Springsteen, Grohl, Costello (2003)";
tPerformance[5] = "You Don't Bring Me Flowers (1980)";
tPerformance[6] = "Stan (2001)";
tPerformance[7] = "La Copa De La Vida (1997)";
tPerformance[8] = "Nessun Dorma (1998)";
tPerformance[9] = "(2006)";
tPerformance[10] = "Man in the Mirror (1988)";
tPerformance[11] = "Tears in Heaven (1994)";
tPerformance[12] = "It's a Man's World (2007)";
tPerformance[13] = "Hung Up/Feels Good (2006)";
tPerformance[14] = "What's Love Got To Do With It (1985)";
tPerformance[15] = "I Will Always Love You (1994)";
tPerformance[16] = "My Heart Will Go On (1998)";
tPerformance[17] = "Give it Away (1993)";
tPerformance[18] = "Goldigger (2006)";
tPerformance[19] = "Rockit (1984)";
tPerformance[20] = "Philadelphia (1995)";
tPerformance[21] = "Man, I Feel Like A Woman (1999)";
tPerformance[22] = "Sexual Healing (1984)";
tPerformance[23] = "American Idiot (2005)";
tPerformance[24] = "Medley (2004)";
tPerformance[25] = "No More Drama (2001)";
tPerformance[26] = "Beautiful Day (2001)";
tPerformance[27] = "Love Sick (1998)";
tPerformance[28] = "Where Were You When The World Stopped Turning (2002)";
tPerformance[29] = "Come Together (1991)";
tPerformance[30] = "Ray Charles/Stevie Wonder (1990)";
tPerformance[31] = "Unforgettable (1992)";
tPerformance[32] = "You Oughta Know (1996)";
tPerformance[33] = "Skynard / McGraw / Betts / Wilson / Urban / Bishop (2005)";
tPerformance[34] = "Smooth (2000)";
tPerformance[35] = "Georgia On My Mind";
tPerformance[36] = "Lady Marmalade (2002)";
tPerformance[37] = "From a Distance (1991)";
tPerformance[38] = "Beethoven: Presto Movement (1994)";
tPerformance[39] = "Breathe (2001)";
tPerformance[40] = "Roxanne (2007)";
tPerformance[41] = "Another Day In Paradise (1991)";
tPerformance[42] = "A Thing Called Love (1990)";
tPerformance[43] = "Bruce/Bonnie Etc. (1994)";
tPerformance[44] = "Natural Blues (2001)";
tPerformance[45] = "Medley (2007)";
tPerformance[46] = "Diamonds On The Soles Of Her Shoes (1987)";
tPerformance[47] = "Change The World (1997)";
tPerformance[48] = "Across The Universe (2005)";
tPerformance[49] = "Kiss From A Rose (1996)";
tPerformance[50] = "Ray/Basie/Jerry Lee/Little Richard (1983)";

function getTImage(which) {
    document.write(imgString(which));
}

function imgString(which) {
    return '<img TITLE="header=['+tArtist[which]+'] body=['+tPerformance[which]+'] offsetx=[-80] offsety=[30]" id="thumb'+which+'" src="images/thumbs/tn'+which+'.jpg" border="0" />'
}


