// REMINDER for JEFF: Heres how this program works: (this description written in 2022, may not be accurate) // PLAYS(past or upcoming) was written before I learned about databases, so it is not a database per se // it is a LIST of (data about) Productions // note: Upcoming & Past are separate lists because I wanted to manually remove upcoming productions - in case I did not want a particular show to be delisted immediately after it closed. Basically the Upcoming plays are FEATURED temporarily until I remove them // when PastPlays is summoned, it goes down through the list of productions one-by-one and at each entry asks: Is this the production you were looking for? // If YES - based on the search criteria, which may be a title, a city, a year, any of the data points - it pauses at this point and signals the summoning page with a FOUND=YES and gives that page the opportunity to use the current data // (either to post a list entry - as on the PN pages. Or just a flag, as when you need to post the Month header on the calendar page (but only if there was a production this month) // this program runs through the entire list every single time, so it is probably not entirely efficient. Later programs that use databases may be more versatile // ---lists productions--- var Show var Title var Featuring var Director var Cast var Crew var Link var Theatre var City var State var YearOpen var MonthOpen var DayOpen var MonthClose var DayClose var todayIs = new Date() var theMonth = todayIs.getMonth()+1 var theDay = todayIs.getDate() var theYear = todayIs.getYear(); if (theYear < 1900) {theYear = theYear+1900} var theWeekday = todayIs.getDay() var Months = "JanFebMarAprMayJunJulAugSepOctNovDec" var MonthWord = Months.substring(theMonth*3-3,theMonth*3) // Function to blank-out all variables after checking each event function BlankAll() { Show = ""; Title = ""; Episode = ""; Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "" Theatre = ""; City =""; State = "" YearOpen = ""; MonthOpen = ""; DayOpen = ""; MonthClose = ""; DayClose = "" } BlankAll() // The pastPlaysDisplay function: function pastPlaysDisplay(type,data) { Show = (" "+Show+" ") if (type == "FindShow" && Show.indexOf(" "+data+" ") >= 0 && (YearinQuestion == YearOpen || YearinQuestion == "")) { Found = "yes"} if (type == "FindMonth" && data == MonthOpen && (YearinQuestion == YearOpen || YearinQuestion == "")) { Found = "yes"} if (type == "RESUME" && Show.indexOf(" "+data+" ") >= 0 && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write(Theatre+" ("+City+", "+State+")
")} if (type == "LISTOFCITIES" && Show.indexOf(" "+data+" ") >= 0 && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write(""+City+", "+State+" ... ")} if (type == "THEATREHISTORY" && Theatre.indexOf(data) != -1 && (!Extra || Extra == City)) { document.write("") document.write(MonthOpen+" "+YearOpen+" - "+Title+" "+Featuring+"
") document.write("")} if (type == "THEATREHISTORY_NOSHAME" && Theatre.indexOf(data) != -1 && (!Extra || Extra == City)) { document.write("") document.write(MonthOpen+" "+DayOpen+", "+YearOpen+" - "+Title+" "+Featuring+"
") document.write("")} if (type == "THEATREHISTORY_UNUSUALCABARET" && Theatre.indexOf(data) != -1 && (!Extra || Extra == City)) { document.write("") document.write(MonthOpen) if (MonthClose) {document.write(" - "+MonthClose)} document.write(" "+YearOpen+" - "+Title+" "+Featuring+"
") document.write("")} if (type == "PRODUCTIONHISTORY" && Show.indexOf(" "+data+" ") >= 0 && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write("") document.write("") document.write(" "+Theatre+"") document.write(" ("+City+", "+State+")") document.write("")} if (type == "PNTEST" && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write("") document.write(""+Title+"
") document.write(" "+Theatre+"") document.write("["+Show+"] "+Featuring+"
") document.write(" ("+City+", "+State+")") document.write("")} // ***** display PEOPLE ***** // NOTE: re: PEOPLE - I have not yet built a Found = Yes function to indicate when I should add one-time items like Headers // For the moment I am assuming this type of list will ONLY be used on my People Pages so that I have already confirmed their existence // and the Header can be generated on that page, rather than here. // but ideally I would want to do a version where it prevents an error if the PersoninQuestion is not listed in the database // type = "PEOPLE" (sent over from People Page into 'style') // data = PersoninQuestion (sent over from People Page into 'matching') // Extra = kind of resume - i.e. DIRECTOR ACTOR CREW (sent over from People Page into 'optional') if (type == "PEOPLE") { // STEP ONE: Whether to Display this Production Title... // if (Featuring.indexOf("Jeff Goode") != -1) check if name listed in Featuring (most useful for finding Jeff) // if (Director.indexOf(data OR PersoninQuestion) != -1) check if nameCode found in Director // if (Cast.indexOf(data OR PersoninQuestion) != -1) check if nameCode found in Cast // if (Crew.indexOf(data OR PersoninQuestion) != -1) check if nameCode found in Crew if ( (Featuring.indexOf(data) != -1) || (Director.indexOf(data) != -1 && Extra.indexOf("DIRECTOR") != -1) || (Cast.indexOf(data) != -1 && Extra.indexOf("CAST") != -1) || (Crew.indexOf(data) != -1 && Extra.indexOf("CREW") != -1) ) { document.write(YearOpen) document.write(" - ") document.write("") document.write(Title+"") document.write("
") document.write(Theatre) document.write(" (") document.write(City) document.write(", ") document.write(State) document.write(")") document.write("
") // STEP TWO: How to Display the Persons ROLE in the production... document.write("") if(Director.indexOf(data) != -1 && Extra.indexOf("DIRECTOR") != -1) { if(Director.indexOf(data+":") == -1) // if no colon, credit is DIRECTED BY { document.write("directed by ") document.write(data) } else { // if colon, credit is parenthesized, e.g. (asst. director) Director = Director+";" document.write("("+Director.substring(Director.indexOf(data)).substring(Director.substring(Director.indexOf(data)).indexOf(":")+2,Director.substring(Director.indexOf(data)).indexOf(";"))+")") } document.write("
") } if(Cast.indexOf(data) != -1 && Extra.indexOf("CAST") != -1) { if(Cast.indexOf(data+":") == -1) // if no colon, credit is FEATURING NAME {document.write("featuring ") document.write(data)} else { // if colon, credit is (as ROLE) Cast = Cast+";" document.write("("+Cast.substring(Cast.indexOf(data)).substring(Cast.substring(Cast.indexOf(data)).indexOf(":")+2,Cast.substring(Cast.indexOf(data)).indexOf(";"))+")") } document.write("
") // *** UNRESOLVED ISSUES: CAST - If a person plays multiple roles that are not combined into one entry in the Cast variable (e.g. Jeff Goode: Death/Morty/ensemble), THIS version would only print ONE of their credits (probably the first one) } if(Crew.indexOf(data) != -1 && Extra.indexOf("CREW") != -1) { Crew = Crew+";" document.write("("+Crew.substring(Crew.indexOf(data)).substring(Crew.substring(Crew.indexOf(data)).indexOf(":")+2,Crew.substring(Crew.indexOf(data)).indexOf(";"))+")") document.write("
") // *** UNRESOLVED ISSUES: CREW - If a person has 2+ credits that are not combined in the Crew variable, THIS version would only print ONE of their credits (probably the first one) } document.write("
") document.write("

") } } // ***** END display PEOPLE ***** if (type == "SAMPLE" && Show.indexOf(" "+data+" ") >= 0) { document.write("") document.write("") document.write(" "+Theatre+"") document.write(" ("+City+", "+State+")") document.write(""+MonthOpen+" "+YearOpen) document.write("")} if (type == "CALENDARMONTH" && data == MonthOpen && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write("") // UNDER CONSTRUCTION - attempting to add logos to old CALenders // as of 2021, i believe this is working, though there are many an-balls for older plays and productions if (YearinQuestion >= 1980) { var FirstPlayCode = Show.substr(1) FirstPlayCode = FirstPlayCode.substr(0,FirstPlayCode.indexOf(" ")) PointAt2(FirstPlayCode) if (FirstPlayCode == "acting" && YearinQuestion <= 1992) {document.write("")} else { if (FirstPlayCode == "acting" && YearinQuestion > 1992 && YearinQuestion <= 2006) {document.write("")} else { if (FirstPlayCode == "acting" && YearinQuestion > 2006) {document.write("")} else { if (FirstPlayCode == "director") {document.write("")} else { if (FirstPlayCode == "crew") {document.write("")} else { if (pointer2 == "Yipes! Error! Not Found!") {document.write("")} else {document.write("")} }}}}} } // an-ball for ALL productions prior to the YearinQuestion limit else {document.write("")} // UNDER CONSTRUCTION - end button for insertion section document.write(Title+" "+Featuring+"
") if (MonthOpen) { document.write(""+MonthOpen+" "+DayOpen) if(MonthClose) {document.write(" - ")} else {document.write(" ")} document.write(MonthClose+" "+DayClose+"
") } document.write(City+", "+State+"
") document.write("

")} if (type == "PLAY" && Show.indexOf(" "+data+" ") >= 0) { document.write("

  • "+Theatre+"
    ") document.write(""+MonthOpen+" "+DayOpen) if(MonthClose) {document.write(" - ")} else {document.write(" ")} document.write(MonthClose+" "+DayClose+"
    ") document.write(City+", "+State+"
    ") document.write("

    ")} // DIRECTINGHISTORY similar to PRODUCTIONHISTORY, but lists Title and Author rather than theatre company if (type == "DIRECTINGHISTORY" && Show.indexOf(" "+data+" ") >= 0 && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write("") document.write("

    ") document.write(" "+Title+"") document.write(" ("+City+", "+State+")") document.write("")} if (type == "PLAYOPENING" && Show.indexOf(" "+data+" ") >= 0 && MonthWord == MonthOpen && theDay == DayOpen) { document.write("
    ") document.write(""+Title+" ") document.write("opens tonight in ") document.write(City+", "+State+".
    ") document.write("("+Theatre+")") document.write("
    ")} if (type == "STATE" && (data == State || (data == "INTERNATIONAL" && State.length > 2)) && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write("") if (MonthOpen) { document.write(MonthOpen+" "+DayOpen) if(MonthClose) {document.write(" - ")} else {document.write(" ")} document.write(MonthClose+" "+DayClose+", ") } document.write(YearOpen+" - ") document.write(City) if (data == "INTERNATIONAL") {document.write(", "+State)} document.write("
    ") document.write("") document.write("

    ")} if (type == "MAPSTATE" && (data == State || (data == "INTERNATIONAL" && State.length > 2)) && (YearinQuestion == YearOpen || YearinQuestion == "")) { document.write("
    "+Title+"
    ") document.write("   ") document.write(" ("+City+")")} if (type == "PLUG" && data == "Today" && MonthWord == MonthOpen && theDay == DayOpen) { document.write(""+Title+" opens tonight in "+City+", "+State+"!!") document.write("   ")} if (type == "PLUG" && data == "Today" && MonthWord == MonthClose && theDay == DayClose) { document.write(""+Title+" closes tonight in "+City+", "+State+"!!") document.write("   ")} if (type == "PLUG" && data == "Tomorrow" && MonthWord == MonthOpen && theDay+1 == DayOpen) { document.write("."+Title+" opens tomorrow in "+City+", "+State+"!!") document.write("   ")} if (type == "PLUG" && data == "Tomorrow" && MonthWord == MonthClose && theDay+1 == DayClose) { document.write(""+Title+" closes tomorrow in "+City+", "+State+"!!") document.write("   ")} BlankAll() } function pastPlays(style,matching,optional) { Found = "no" Extra = optional // 1980 Show = "acting"; Title = "Comedy of Errors by William Shakespeare" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act80_shakespeare.htm#CedarRapids" Theatre = "Kennedy High School" City = "Cedar Rapids"; State = "IA" YearOpen = "1980"; MonthOpen = "Dec"; DayOpen = "11"; MonthClose = "Dec"; DayClose = "13" pastPlaysDisplay(style,matching) // 1981 Show = "acting"; Title = "Oliver! by Lionel Bart" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act81_bart.htm#CedarRapids" Theatre = "Kennedy High School" City = "Cedar Rapids"; State = "IA" YearOpen = "1981"; MonthOpen = "May"; DayOpen = "8"; MonthClose = "May"; DayClose = "16" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Grease by Jim Jacobs & Warren Casey" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act81_jacobscasey.htm#CedarRapids" Theatre = "All-City Summer Musical" City = "Cedar Rapids"; State = "IA" YearOpen = "1981"; MonthOpen = "Jul"; DayOpen = "23"; MonthClose = "Jul"; DayClose = "25" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Magic Pebble Gang by Nancy Settlemyre & Betsey Chapman" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act81_settlemyrechapman.htm#CedarRapids" Theatre = "Kennedy High School & Playtime Poppy Children’s Theatre" City = "Cedar Rapids"; State = "IA" YearOpen = "1981"; MonthOpen = "Oct"; DayOpen = "14"; MonthClose = "Oct"; DayClose = "17" pastPlaysDisplay(style,matching) Show = "director"; Title = "The Simple Truth by Carl Allensworth" Featuring = "" Director = "Tony Polashek; Jeff Goode"; Cast = ""; Crew = "" Link = "directing/dir81_allensworth.htm#CedarRapids" Theatre = "Kennedy High School" City = "Cedar Rapids"; State = "IA" YearOpen = "1981"; MonthOpen = "Oct"; DayOpen = "14"; MonthClose = "Oct"; DayClose = "17" pastPlaysDisplay(style,matching) // 1982 Show = "acting"; Title = "Inherit the Wind by Jerome Lawrence & Robert E. Lee" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act82_lawrencelee.htm#CedarRapids" Theatre = "Kennedy High School" City = "Cedar Rapids"; State = "IA" YearOpen = "1982"; MonthOpen = "Jan"; DayOpen = "21"; MonthClose = "Jan"; DayClose = "23" pastPlaysDisplay(style,matching) // Scapino! @ state festival - missing some information, so it is currently not listed // Show = "acting"; Title = "Scapino! by Jim Dale & Frank Dunlop" // Featuring = "" // Director = ""; Cast = ""; Crew = "" // Link = "acting/act82_dunlopdale.htm#Pella" // Theatre = "Iowa High School Speech Association" // City = "Pella"; State = "IA" // YearOpen = "1982"; MonthOpen = "Spring"; DayOpen = ""; MonthClose = ""; DayClose = "" // pastPlaysDisplay(style,matching) Show = "acting"; Title = "Scapino! by Jim Dale & Frank Dunlop" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act82_dunlopdale.htm#DesMoines" Theatre = "Iowa High School Speech Association" City = "Des Moines"; State = "IA" YearOpen = "1982"; MonthOpen = "Feb"; DayOpen = "20"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Flower Drum Song by Rodgers & Hammerstein" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act82_rodgershammerstein.htm#CedarRapids" Theatre = "Kennedy High School" City = "Cedar Rapids"; State = "IA" YearOpen = "1982"; MonthOpen = "Spring"; DayOpen = ""; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Li’l Abner by Norman Panama & Melvin Frank" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act82_panamafrank.htm#CedarRapids" Theatre = "All-City Summer Musical" City = "Cedar Rapids"; State = "IA" YearOpen = "1982"; MonthOpen = "Jul"; DayOpen = "22"; MonthClose = "Jul"; DayClose = "24" pastPlaysDisplay(style,matching) // 1984 Show = "acting"; Title = "Delicate Ears by Gregory Lindeman" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act84_lindeman.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1984"; MonthOpen = "Apr"; DayOpen = "27"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Death of Geli Raubel by William V. Johnson" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act84_johnson.htm#IowaCity1" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1984"; MonthOpen = "Fall"; DayOpen = ""; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Claudia by William V. Johnson" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act84_johnson.htm#IowaCity2" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1984"; MonthOpen = "Fall"; DayOpen = ""; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Fall of Babylon by D.W. Griffith (The Drawing Legion)" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act84_johnson.htm#IowaCity2" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1984"; MonthOpen = "Dec"; DayOpen = "5"; MonthClose = "Dec"; DayClose = "8" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Bought With Baggage (Tisch Jones)" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act84_jones.htm#IowaCity" Theatre = "Black Action Theatre" City = "Iowa City"; State = "IA" YearOpen = "1984"; MonthOpen = "Dec"; DayOpen = "14"; MonthClose = "Dec"; DayClose = "15" pastPlaysDisplay(style,matching) // 1985 Show = "acting"; Title = "The Way Out by Shem Bitterman" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act85_bitterman.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1985"; MonthOpen = "May"; DayOpen = "11"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Agathos by David Blakely" Featuring = "(with Jeff Goode as Young Trojan)" Director = ""; Cast = ""; Crew = "" Link = "acting/act85_blakely.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1985"; MonthOpen = "Nov"; DayOpen = "7"; MonthClose = "Nov"; DayClose = "10" pastPlaysDisplay(style,matching) Show = "director"; Title = "The Nature and Purpose of the Universe by Christopher Durang" Featuring = "" Director = "Jeff Goode; Cheryl Snodgrass"; Cast = ""; Crew = "" Link = "directing/dir85_durang.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1985"; MonthOpen = "Nov"; DayOpen = "19"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Bought With Our Baggage (Tisch Jones)" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act85_jones.htm#IowaCity" Theatre = "Black Action Theatre" City = "Iowa City"; State = "IA" YearOpen = "1985"; MonthOpen = "Dec"; DayOpen = "5"; MonthClose = "Dec"; DayClose = "7" pastPlaysDisplay(style,matching) // 1986 Show = "acting"; Title = "Peter Pan by J.M. Barrie" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_barrie.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Feb"; DayOpen = "26"; MonthClose = "Mar"; DayClose = "9" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Magic Kingdom Tokyo Ride by Craig Childress" Featuring = "(with Jeff Goode as Tamura)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_childress.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "May"; DayOpen = "6"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "crew"; Title = "Nijinsky by Glenn Blumstein" Featuring = "(Jeff Goode, crew)" Director = ""; Cast = ""; Crew = "" Link = "crew/crew86_blumstein1.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "May"; DayOpen = "10"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Revenge of the Space Pandas by David Mamet" Featuring = "(with Jeff Goode as The Executioner)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_mamet.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Jul"; DayOpen = "5"; MonthClose = "Jul"; DayClose = "23" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Manifest Destiny by Melvyn Jones" Featuring = "(with Jeff Goode as Men)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_ruth.htm#IowaCity" Theatre = "Alternative Theatre" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Jul"; DayOpen = "24"; MonthClose = "Jul"; DayClose = "26" pastPlaysDisplay(style,matching) Show = "noshame goode861003 yahtze cavewalruses tobyhuss" Title = "No Shame Theatre debuts!" Featuring = "(featuring The Unicorn, Doctor Yahtze, Cave Walruses, Nerve Chain, A Toby Huss Piece etc.)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1986" MonthOpen = "Oct" DayOpen = "3" MonthClose = "Dec" DayClose = "12" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Alchemist by Ben Jonson" Featuring = "(with Jeff Goode as Kastril the Angry Boy)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_jonson.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Oct"; DayOpen = "15"; MonthClose = "Oct"; DayClose = "26" pastPlaysDisplay(style,matching) Show = "crew"; Title = "Nijinsky by Glenn Blumstein" Featuring = "(Jeff Goode, makeup crew chief)" Director = ""; Cast = ""; Crew = "" Link = "crew/crew86_blumstein2.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Oct"; DayOpen = "29"; MonthClose = "Nov"; DayClose = "9" pastPlaysDisplay(style,matching) Show = "acting"; Title = "3 Cats in a Rowboat by Andrea Kirchmeier" Featuring = "[reading] (with Jeff Goode as The Fish Hunter)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_kirchmeier.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Oct"; DayOpen = "31"; MonthClose = "Oct"; DayClose = "31" pastPlaysDisplay(style,matching) Show = "crew"; Title = "If It Heals by Todd Ristau" Featuring = "(Jeff Goode, light board op)" Director = ""; Cast = ""; Crew = "" Link = "crew/crew86_ristau.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Nov"; DayOpen = "7"; MonthClose = "Nov"; DayClose = "9" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Heartpiece by Heiner Mueller" Featuring = "(with Jeff Goode & Katie Ryan)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_mueller.htm#IowaCity" Theatre = "University of Iowa Theatre Lab" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Fall"; DayOpen = ""; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "End of the World by Arthur Kopit" Featuring = "(with Jeff Goode & Greg Jackson)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_kopit.htm#IowaCity" Theatre = "University of Iowa Theatre Lab" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Fall"; DayOpen = ""; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Shaved Splits by Sam Shepard" Featuring = "(with Jeff Goode as DT)" Director = ""; Cast = ""; Crew = "" Link = "acting/act86_shepard.htm#IowaCity" Theatre = "University of Iowa Directors Workshop" City = "Iowa City"; State = "IA" YearOpen = "1986"; MonthOpen = "Dec"; DayOpen = "8"; MonthClose = "Dec"; DayClose = "10" pastPlaysDisplay(style,matching) // 1987 Show = "gunsdont misc" Title = "Guns Don’t Kill People, People Kill People" Featuring = "" Director = "Eric Heinz"; Cast = ""; Crew = "" Link = "" Theatre = "Iowa Directors Workshop" City = "Iowa City" State = "IA" YearOpen = "1987" MonthOpen = "" DayOpen = "" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "noshame soallalone" Title = "No Shame Theatre" Featuring = "(featuring Nerve Chain, So All Alone, etc.)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1987" MonthOpen = "Jan" DayOpen = "23" MonthClose = "May" DayClose = "8" pastPlaysDisplay(style,matching) Show = "noshame cavewalruses" Title = "Duck’s Breath / No Shame" Featuring = "(featuring Cave Walruses)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "University Theatres" City = "Iowa City" State = "IA" YearOpen = "1987" MonthOpen = "Mar" DayOpen = "6" MonthClose = "Mar" DayClose = "7" pastPlaysDisplay(style,matching) Show = "elf" Title = "The Elf" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pnelf87.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City" State = "IA" YearOpen = "1987" MonthOpen = "Mar" DayOpen = "12" MonthClose = "Mar" DayClose = "14" pastPlaysDisplay(style,matching) Show = "crew"; Title = "Nijinsky: God’s Mad Clown by Glenn Blumstein" Featuring = "(Jeff Goode, makeup crew)" Director = ""; Cast = ""; Crew = "" Link = "crew/crew87_blumstein.htm#IowaCity" Theatre = "Kennedy Center" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "Mar"; DayOpen = "31"; MonthClose = "Apr"; DayClose = "2" pastPlaysDisplay(style,matching) Show = "noshame ryj"; Title = "No Shame Theatre" Featuring = "(featuring Romeo y Juliet (y Pablo y Conchita y Unos Otros))" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/ord8687.htm#May01.87" Theatre = "No Shame Theatre" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "May"; DayOpen = "1"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "3 cats in a rowboat, or Sharks in My Backyard" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act87_kirchmeier.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "May"; DayOpen = "7"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Not All Thieves are Harmful by Dario Fo" Featuring = "(with Jeff Goode as The Thief)" Director = ""; Cast = ""; Crew = "" Link = "acting/act87_fo.htm" Theatre = "Alternative Theatre" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "Jul"; DayOpen = "13"; MonthClose = "Jul"; DayClose = "21" pastPlaysDisplay(style,matching) Show = "noshame fairytale" Title = "No Shame Theatre" Featuring = "(featuring Brass Link, No Shame Players, Fairy Tale for Boy and Girl, etc.)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1987" MonthOpen = "Sep" DayOpen = "4" MonthClose = "Dec" DayClose = "11" pastPlaysDisplay(style,matching) Show = "noshame soallalone" Title = "No Shame Theatre" Featuring = "(featuring So All Alone & Burt Kake)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1987"; MonthOpen = "Sep"; DayOpen = "4"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "noshame inamongwolves" Title = "No Shame Theatre" Featuring = "(featuring No Shame Players (cucumber/already taken), an excerpt from In Among Wolves & Brass Link, episode 1)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1987"; MonthOpen = "Sep"; DayOpen = "18"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "inamongwolves"; Title = "In Among Wolves" Featuring = "[reading]" Director = ""; Cast = ""; Crew = "" Link = "" Theatre = "Dead White Mountain" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "Oct"; DayOpen = "12"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Time of Your Life by William Saroyan" Featuring = "(with Jeff Goode as Willie)" Director = ""; Cast = ""; Crew = "" Link = "acting/act87_saroyan.htm#IowaCity" Theatre = "University Theatres" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "Nov"; DayOpen = "11"; MonthClose = "Nov"; DayClose = "22" pastPlaysDisplay(style,matching) Show = "director"; Title = "A Nativity Play by Hugo Ball" Featuring = "(directed by Jeff Goode)" Director = "Jeff Goode"; Cast = ""; Crew = "" Link = "directing/dir87_ball.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1987"; MonthOpen = "Dec"; DayOpen = "11"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) // 1988 Show = "acting crew"; Title = "Romeo and Juliet by William Shakespeare" Featuring = "(with Jeff Goode as Musician/sound board op)" Director = ""; Cast = ""; Crew = "" Link = "acting/act88_shakespeare.htm#IowaCity" Theatre = "University Theatres" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "Feb"; DayOpen = "17"; MonthClose = "Feb"; DayClose = "28" pastPlaysDisplay(style,matching) Show = "acting"; Title = "Barber of Seville by Pierre-Augustin Caron de Beaumarchais" Featuring = "(with Jeff Goode as Almaviva)" Director = ""; Cast = ""; Crew = "" Link = "acting/act88_beaumarchais.htm#IowaCity" Theatre = "University Theatres" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "Apr"; DayOpen = "6"; MonthClose = "Apr"; DayClose = "17" pastPlaysDisplay(style,matching) Show = "noshame" Title = "No Shame Theatre (Spring ’88)" Featuring = "(featuring No Shame Players)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1988" MonthOpen = "" DayOpen = "" MonthClose = "May" DayClose = "6" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Grand Allusions by Branko Dimitrijevic" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "acting/act88_dimitrijevic.htm#IowaCity" Theatre = "Iowa Playwrights Workshop" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "May"; DayOpen = ""; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "director"; Title = "Ubu in the Park" Featuring = "(directed by Jeff Goode)" Director = "Jeff Goode; Amy Lynn Pigott: asst. director"; Cast = ""; Crew = "" Link = "directing/dir88_jarry.htm" Theatre = "Alternative Theatre" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "Jul"; DayOpen = "11"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "director"; Title = "Ubu Roi by Alfred Jarry" Featuring = "(directed by Jeff Goode)" Director = "Jeff Goode; Amy Lynn Pigott: asst. director"; Cast = ""; Crew = "" Link = "directing/dir88_jarry.htm" Theatre = "Alternative Theatre" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "Jul"; DayOpen = "17"; MonthClose = "Jul"; DayClose = "24" pastPlaysDisplay(style,matching) Show = "noshame soallalone" Title = "No Shame Theatre - Fall Preview" Featuring = "(featuring So All Alone)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "Sep"; DayOpen = "9"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "noshame" Title = "No Shame Theatre (Fall ’88)" Featuring = "(featuring No Shame Players)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1988" MonthOpen = "Sep" DayOpen = "9" MonthClose = "Dec" DayClose = "9" pastPlaysDisplay(style,matching) Show = "acting"; Title = "The Unusual Cabaret" Featuring = "(with Jeff Goode as The Nerd)" Director = ""; Cast = ""; Crew = "" Link = "acting/act88_unusualcabaret.htm#IowaCity" Theatre = "University of Iowa" City = "Iowa City"; State = "IA" YearOpen = "1988"; MonthOpen = "Nov"; DayOpen = "10"; MonthClose = "Nov"; DayClose = "18" pastPlaysDisplay(style,matching) // 1989 Show = "noshame dpc_talkingparrot cavewalruses spi goode890331 snyx" Title = "No Shame Theatre" Featuring = "(featuring Dead Panther, Dead Panther: Talking Parrot, Cave Walruses, No Shame Players, The Emperor’s New Clothes, The Interview, Life & Death of Squeaky McKlean, Part 2, Spider-Man, Nicaragua, Snyx the Dragon)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1989" MonthOpen = "Jan" DayOpen = "13" MonthClose = "Apr" DayClose = "14" pastPlaysDisplay(style,matching) Show = "noshame bob spi yahtze dpc_talkingparrot" Title = "The Best of No Shame Theatre" Featuring = "(featuring Doctor Yahtze, No Shame Players, Dead Panther, Spider-Man)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1989" MonthOpen = "Apr" DayOpen = "21" MonthClose = "Apr" DayClose = "22" pastPlaysDisplay(style,matching) Show = "noshame big" Title = "Summer No Shame" Featuring = "(featuring The Stockhausen Monologue, No Shame Players)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1989" MonthOpen = "Jul" DayOpen = "14" MonthClose = "Jul" DayClose = "21" pastPlaysDisplay(style,matching) Show = "misc" Title = "A Noel Coward Cabaret" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "" Theatre = "University of Missouri at Kansas City" City = "Kansas City" State = "MO" YearOpen = "1989" MonthOpen = "Oct" DayOpen = "12" MonthClose = "Oct" DayClose = "14" pastPlaysDisplay(style,matching) Show = "noshame"; Title = "No Shame New York debuts!" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/newyork/index.htm" Theatre = "No Shame New York" City = "New York"; State = "NY" YearOpen = "1989"; MonthOpen = "Sep"; DayOpen = "30"; MonthClose = ""; DayClose = "" pastPlaysDisplay(style,matching) Show = "dpc fairytale phallic big goode890331 snyx cavewalruses spi" Title = "Dead Panther Cabaret" Featuring = "(featuring Dead Panther: Talking Parrot, Fairy Tale for Boy and Girl, Phallic / Politic, Stockhausen Monologue, Nicaragua, Snyx the Dragon, Cave Walruses, Spider-Man)" Director = ""; Cast = ""; Crew = "" Link = "pndpc89.htm#KansasCity" Theatre = "University of Missouri at Kansas City" City = "Kansas City" State = "MO" YearOpen = "1989" MonthOpen = "Nov" DayOpen = "6" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "noshame" Title = "No Shame Theatre" Featuring = "(featuring Cows, No Shame Players, Alien Recording)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1989" MonthOpen = "Nov" DayOpen = "17" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) // 1990 Show = "noshame nar_cup" Title = "No Shame Theatre" Featuring = "(featuring Cupid, Demigod of Love & Ground Hogs Day)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1990" MonthOpen = "Feb" DayOpen = "2" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "dpc god" Title = "Dead Panther Cabaret" Featuring = "(featuring Waiting On Godot)" Director = ""; Cast = ""; Crew = "" Link = "pndpc90.htm#KansasCity" Theatre = "University of Missouri at Kansas City" City = "Kansas City" State = "MO" YearOpen = "1990" MonthOpen = "Mar" DayOpen = "5" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "noshame" Title = "No Shame Theatre" Featuring = "(featuring Hair)" Director = ""; Cast = ""; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1990" MonthOpen = "Mar" DayOpen = "9" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "noshame dpc_talkingparrot" Title = "No Shame Theatre" Featuring = "(featuring Commando Wombat Theatre, Dead Panther: Talking Parrot)" Director = ""; Cast = "Jim Thorn"; Crew = "" Link = "http://www.noshame.org/iowacity/index.htm" Theatre = "No Shame Theatre" City = "Iowa City" State = "IA" YearOpen = "1990" MonthOpen = "Mar" DayOpen = "30" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "acting misc" Title = "A Noel Coward Cabaret" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "" Theatre = "Missouri Repertory Theatre Guild" City = "Kansas City" State = "MO" YearOpen = "1990" MonthOpen = "May" DayOpen = "5" MonthClose = "" DayClose = "" pastPlaysDisplay(style,matching) Show = "esc" Title = "Escape From Eldorado" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pnesc90.htm#BarHarbor" Theatre = "The Unusual Cabaret" City = "Bar Harbor" State = "ME" YearOpen = "1990" MonthOpen = "May" DayOpen = "25" MonthClose = "Aug" DayClose = "18" pastPlaysDisplay(style,matching) Show = "poe" Title = "Dead Poets" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pnpoe90.htm#BarHarbor" Theatre = "The Unusual Cabaret" City = "Bar Harbor" State = "ME" YearOpen = "1990" MonthOpen = "Jul" DayOpen = "6" MonthClose = "Aug" DayClose = "19" pastPlaysDisplay(style,matching) Show = "rum" Title = "Rumpelstiltskin" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pnrum90.htm#BarHarbor" Theatre = "The Unusual Cabaret" City = "Bar Harbor" State = "ME" YearOpen = "1990" MonthOpen = "Jul" DayOpen = "20" MonthClose = "Oct" DayClose = "13" pastPlaysDisplay(style,matching) Show = "" Title = "Beggar’s Opera by John Gay" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = ">