pn// ---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) var Root // I *believe* if I put this here it will help me solve the problem of older code that pre-dates my use of Root. // 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 upcomingPlaysDisplay function: function upcomingPlaysDisplay(type,data) { Show = (" "+Show+" ") // FindSate function is not currently in use on any pages: if (type == "FindState" && data == State) { Found = "yes"} if (type == "FindShow" && Show.indexOf(" "+data+" ") >= 0) { Found = "yes"} if (type == "FindMonth" && data == MonthOpen && Extra == YearOpen) { Found = "yes"} if (type == "LISTOFCITIES" && Show.indexOf(" "+data+" ") >= 0) { 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 == "PRODUCTIONHISTORY" && Show.indexOf(" "+data+" ") >= 0) { document.write("") document.write(" "+Theatre+"") document.write(" ("+City+", "+State+")") document.write("")} if (type == "PNTEST") { document.write("") document.write(""+Title+"
    ") document.write(" "+Theatre+"") document.write("["+Show+"] "+Featuring+"
    ") document.write(" ("+City+", "+State+")") document.write("")} 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 && Extra == YearOpen) { document.write("") // UNDER CONSTRUCTION - this section added to current calendar (page02.htm) but NOT PAST calendars var FirstPlayCode = Show.substr(1) FirstPlayCode = FirstPlayCode.substr(0,FirstPlayCode.indexOf(" ")) PointAt2(FirstPlayCode) if (pointer2 == "Yipes! Error! Not Found!") {document.write("")} else {document.write("")} // UNDER CONSTRUCTION - end button for insertion section document.write(Title+" "+Featuring+"
    ") 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) { document.write("

    ") document.write(" "+Title+"") 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("

    ")} 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))) { document.write(""+MonthOpen+" "+DayOpen) if(MonthClose) {document.write(" - ")} else {document.write(" ")} document.write(MonthClose+" "+DayClose+" - ") 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))) { 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("   ")} if (type == "FIRST") { if (Found == "no") {Found = Show} } if (type == "SECOND") { if (Found == "ONE") {Found = Show} if (Found == "no") {Found = "ONE"} } if (type == "THIRD") { if (Found == "TWO") {Found = Show} if (Found == "ONE") {Found = "TWO"} if (Found == "no") {Found = "ONE"} } // NOTE the NEXT function might conceivably produce an error if there are NO upcoming plays at all in the future if (type == "NEXT") { if (YearOpen > theYear || (YearOpen == theYear && ((Months.indexOf(MonthOpen)/3)+1) > theMonth) || (YearOpen == theYear && MonthOpen == MonthWord && DayOpen >= theDay)){ if (Found == "no") {Found = Show} }} BlankAll() } function upcomingPlays(style,matching,optional) { Found = "no" Extra = optional // Show = "jeff"; Title = "Jeff in Buffalo" // Featuring = "" // Director = ""; Cast = ""; Crew = "" // Link = "cal_jeff2023.htm" // Theatre = "First Look Buffalo Theatre Company" // City = "Buffalo"; State = "NY" // YearOpen = "2023"; MonthOpen = "Mar"; DayOpen = "3"; MonthClose = "Mar"; DayClose = "8" // upcomingPlaysDisplay(style,matching) // Show = "jeff"; Title = "Jeff in Buffalo II" // Featuring = "" // Director = ""; Cast = ""; Crew = "" // Link = "cal_jeff2023.htm" // Theatre = "First Look Buffalo Theatre Company" // City = "Buffalo"; State = "NY" // YearOpen = "2023"; MonthOpen = "Apr"; DayOpen = "12"; MonthClose = "Apr"; DayClose = "16" // upcomingPlaysDisplay(style,matching) Show = "god"; Title = "Waiting On Godot" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pngod05.htm#Moscow" Theatre = "University of Idaho" City = "Moscow"; State = "ID" YearOpen = "2005"; MonthOpen = "Nov"; DayOpen = "30"; MonthClose = "Dec"; DayClose = "4" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = "Erica Zamarripa"; Cast = ""; Crew = "" Link = "pndphd21.htm#Snyder" Theatre = "Western Texas College" City = "Snyder"; State = "TX" YearOpen = "2021"; MonthOpen = "Feb"; DayOpen = "23"; MonthClose = "Feb"; DayClose = "25" upcomingPlaysDisplay(style,matching) Show = "apj"; Title = "Florida State Thespians District 8 Festival" Featuring = "(featuring The Apostle John)" Link = "plays/pnthespians22.htm#Miami" Theatre = "Florida State Thespians" City = "Miami"; State = "FL" YearOpen = "2022"; MonthOpen = "Nov"; DayOpen = "16"; MonthClose = "Nov"; DayClose = "19" upcomingPlaysDisplay(style,matching) Show = "apj"; Title = "Thespian Troupe Showcase" Featuring = "(featuring The Apostle John)" Director = ""; Cast = ""; Crew = "" Link = "plays/pnthespians22.htm#MiamiSprings" Theatre = "Miami Springs Senior High School" City = "Miami Springs"; State = "FL" YearOpen = "2022"; MonthOpen = "Dec"; DayOpen = "8"; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) Show = "firstlookbuffalo_house futureformer openhouse"; Title = "Let’s Play House!" Featuring = "(8 new 10-minute plays by Drew Fornarola, Jeff Goode, Adam Hahn, Donna Hoke, Samantha Macher, Wendy-Marie Martin, Avery Lamar Pope)" Director = "Mike Doben; Drew Fornorola; Kayla Victoria Reumann; Vanessa Shevat; Bob Van Valin"; Cast = "Jacob Applegate; Kari Becker; Jon Cesar; Austin Gallego; Shanda Gardner; Becky Globus; Anthony J. Grande; Kaylie Horowitz; Susan King; Nick Lama; Steven Maiseke; Kelly Morgan; Sarah Waetcher; Kathleen Rooney; Madison Sedlor; Shawnell Tillery; Weston Young; Jesse Zappia"; Crew = "Bob Rusch: producer" Link = "plays/pnfirstlookbuffalo23.htm#OneLocation" Theatre = "First Look Buffalo Theatre Company" City = "Buffalo"; State = "NY" YearOpen = "2023"; MonthOpen = "Feb"; DayOpen = "3"; MonthClose = "Feb"; DayClose = "12" upcomingPlaysDisplay(style,matching) Show = "cassandra"; Title = "Cassandra Triumphant!" Featuring = "[first reading]" Director = "Mike Doben"; Cast = "Madeline Allard-Dugan: Cassandra; Pandora Kew: Hera; Alyssa Grace Adams: Aphrodite; Colleen Pine: Athena; Kathleen Rooney: Hecuba; Reagan Zuber: Helen; Vanessa Shevat: Cressida/Polyxena; Steven Maiseke: Apollo; Matthew Mogensen: Paris; Austin Gallego: Hector; Zachary Thomas: Troilus; Trevor Dugan: Agamemnon; Aaron Krygier: Achilles; Sean Taylor: Polydorus; Mike Doben: Narrator; Shanda Gardner: Narrator"; Crew = "Bob Rusch: producer; Kayla Victoria Reumann: lights" Link = "plays/pncassandra23.htm#Buffalo" Theatre = "First Look Buffalo Theatre Company" City = "Buffalo"; State = "NY" YearOpen = "2023"; MonthOpen = "Mar"; DayOpen = "7"; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pndphd23.htm#Kalgoorlie" Theatre = "Stage Left Theatre Troupe" City = "Kalgoorlie-Boulder"; State = "Western Australia" YearOpen = "2023"; MonthOpen = "Mar"; DayOpen = "10"; MonthClose = "Mar"; DayClose = "25" upcomingPlaysDisplay(style,matching) Show = "apj"; Title = "Florida Thespians State Festival 2023" Featuring = "(featuring The Apostle John)" Link = "plays/pnthespians23.htm#Tampa" Theatre = "Florida State Thespians" City = "Tampa"; State = "FL" YearOpen = "2023"; MonthOpen = "Mar"; DayOpen = "15"; MonthClose = "Mar"; DayClose = "18" upcomingPlaysDisplay(style,matching) Show = "fursona"; Title = "Fursona Non Grata" Featuring = "[world premiere]" Director = "Drew Fornarola; Kayla Victoria Reumann: assistant director"; Cast = "Kaylie Horowitz; Dan Torres; John Patrick Patti; Sarah Waechter; Susan King; Andrew J. Brown; Maddy Sedlor; Clara Tan; Lucas Colon; Mark Tramont: understudy; Kari Becker: understudy; Jesse Zappia: understudy; Julia Damatin: understudy"; Crew = "Kayla Victoria Reumann: stage manager; Bob Rusch: producer" Link = "plays/pnfursona23.htm#Buffalo" Theatre = "First Look Buffalo Theatre Company" City = "Buffalo"; State = "NY" YearOpen = "2023"; MonthOpen = "Apr"; DayOpen = "14"; MonthClose = "May"; DayClose = "7" upcomingPlaysDisplay(style,matching) // Show = "jeff"; Title = "Furry Q & A" // Featuring = "" // Director = ""; Cast = ""; Crew = "" // Link = "cal_jeff2023.htm" // Theatre = "First Look Buffalo Theatre Company" // City = "Buffalo"; State = "NY" // YearOpen = "2023"; MonthOpen = "Apr"; DayOpen = "15"; MonthClose = ""; DayClose = "" // upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pndphd23.htm#Lowell" Theatre = "Middlesex Community College" City = "Lowell"; State = "MA" YearOpen = "2023"; MonthOpen = "May"; DayOpen = "11"; MonthClose = "May"; DayClose = "12" upcomingPlaysDisplay(style,matching) Show = "noshame"; Title = "No Shame Burlington debuts!" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "plays/ns230519.htm#Burlington" Theatre = "No Shame Burlington" City = "Burlington"; State = "NC" YearOpen = "2023"; MonthOpen = "May"; DayOpen = "19"; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) Show = "litonfire hkfn"; Title = "LIT ON FIRE: Twelve Short Parodies of Reading List Classics" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "plays/pnlitonfire23.htm#VonOrmy" Theatre = "Judith A. Resnik Middle School" City = "Von Ormy"; State = "TX" YearOpen = "2023"; MonthOpen = "May"; DayOpen = "23"; MonthClose = "May"; DayClose = "24" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pndphd23.htm#Renton" Theatre = "Liberty High School" City = "Renton"; State = "WA" YearOpen = "2023"; MonthOpen = "Jun"; DayOpen = "2"; MonthClose = "Jun"; DayClose = "3" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = "Derrick Smith"; Cast = ""; Crew = "" Link = "pndphd23.htm#Minneapolis" Theatre = "Phoenix Theater" City = "Minneapolis"; State = "MN" YearOpen = "2023"; MonthOpen = "Jun"; DayOpen = "23"; MonthClose = "Jul"; DayClose = "1" upcomingPlaysDisplay(style,matching) Show = "ele"; Title = "Elephans: We all Share the Same Stars" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pnele23.htm#OklahomaCity" Theatre = "Metropolitan Library System" City = "Oklahoma City"; State = "OK" YearOpen = "2023"; MonthOpen = "Jul"; DayOpen = "29"; MonthClose = "Jul"; DayClose = "30" upcomingPlaysDisplay(style,matching) Show = "firstlookbuffalo_hell 8mh_realtor firstlookbuffalo"; Title = "Hell-oween" Featuring = "(10 new 8-minute plays by Sean Abley, Drew Fornarola, Jeff Goode, Adam Hahn, Donna Hoke, Wendy-Marie Martin, Avery Lamar Pope, Bella Poynton)" Director = "Mike Doben; Jason Francey; Camilla Maxwell; Vanessa Shevat; Kayla Victoria Reumann"; Cast = "Bob Rusch: Demon Realtor; Brendan Cunningham: The Almighty; Susan Acker; Andrew J. Brown; Tammy Dobe; Shanda Gardner; Anthony Grande; Elspeth Kain; Susan King; Ryan Norton; JR Ozoria, Lori Panaro, Kathleen Rooney, Madison Sedlor; Alfonzo Tyson; Nikita Williams"; Crew = "Bob Rusch: producer; Kayla Victoria Reumann: producer; Madison Sedlor: producer" Link = "plays/pnfirstlookbuffalo2324.htm#OneLocation" Theatre = "First Look Buffalo Theatre Company" City = "Buffalo"; State = "NY" YearOpen = "2023"; MonthOpen = "Oct"; DayOpen = "6"; MonthClose = "Oct"; DayClose = "21" upcomingPlaysDisplay(style,matching) Show = "dra"; Title = "Dracula Rides Again" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "plays/pndra23.htm#Camrose" Theatre = "Infinite Imagination Traveling Theater Society" City = "Camrose"; State = "Alberta, CANADA" YearOpen = "2023"; MonthOpen = "Oct"; DayOpen = "26"; MonthClose = "Nov"; DayClose = "4" upcomingPlaysDisplay(style,matching) Show = "xmas2"; Title = "Christmas 2: it’s a Wonderful Nativity" Featuring = "" Director = "Shannon Peterson"; Cast = ""; Crew = "" Link = "plays/pnxmas2_2023.htm#Boise" Theatre = "Boise Little Theater" City = "Boise"; State = "ID" YearOpen = "2023"; MonthOpen = "Nov"; DayOpen = "24"; MonthClose = "Dec"; DayClose = "16" upcomingPlaysDisplay(style,matching) Show = "8rm"; Title = "THE EIGHT: Reindeer Monologues" Featuring = "" Director = "Travis McMahon"; Cast = "Alex Baum; Xarve Buchholz; Andy Shorten; Andrea Magpulong; Jackson Bliss; Dani Caoby; Melissa Cremascoli; Emma Burns"; Crew = "" Link = "pn8rm23.htm#Sydney" Theatre = "Sydney Acting Studio" City = "Sydney"; State = "AUSTRALIA" YearOpen = "2023"; MonthOpen = "Nov"; DayOpen = "24"; MonthClose = "Dec"; DayClose = "17" upcomingPlaysDisplay(style,matching) Show = "8rm"; Title = "THE EIGHT: Reindeer Monologues" Featuring = "" Director = "Spencer Korey Duncan"; Cast = ""; Crew = "" Link = "pn8rm23.htm#Chicago" Theatre = "Raven Room" City = "Chicago"; State = "IL" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "1"; MonthClose = "Dec"; DayClose = "23" upcomingPlaysDisplay(style,matching) Show = "8rm"; Title = "THE EIGHT: Reindeer Monologues" Featuring = "" Director = "Trashan Donald; Spencer Beyerlein: assistant director"; Cast = ""; Crew = "" Link = "pn8rm23.htm#Saginaw" Theatre = "Pit and Balcony Community Theatre" City = "Saginaw"; State = "MI" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "8"; MonthClose = "Dec"; DayClose = "9" upcomingPlaysDisplay(style,matching) Show = "dp_skyped dphd firstlookbuffalo"; Title = "2023-24 New Play Reading Festival, Vol. 1" Featuring = "(featuring Murder She Skyped)" Director = "Reumann; Mike Doben; Kate Powers; Jason Francey"; Cast = "Steven Brachmann; Sarah Waechter; Madison Sedlor as Sonya Gold-Thwait; Kathleen Rooney; Mark Tramont; Steven Maisonet; Elliott Bystrak; Kalie Horowitz"; Crew = "" Link = "plays/pnfirstlookbuffalo2324.htm#ReadingFestival" Theatre = "First Look Buffalo Theatre Company" City = "Buffalo"; State = "NY" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "8"; MonthClose = "Dec"; DayClose = "10" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pndphd23.htm#CorpusChristi" Theatre = "Texas A&M University-Corpus Christi" City = "Corpus Christi"; State = "TX" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "8"; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) Show = "7san"; Title = "Seven Santas" Featuring = "" Director = "Rhonda Erbrick; Ajia Penix"; Cast = ""; Crew = "" Link = "plays/pn7san23.htm#Birmingham" Theatre = "Birmingham Festival Theatre" City = "Birmingham"; State = "AL" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "8"; MonthClose = "Dec"; DayClose = "17" upcomingPlaysDisplay(style,matching) Show = "8rm"; Title = "THE EIGHT: Reindeer Monologues" Featuring = "" Director = ""; Cast = "Sarah Bergin: Dancer; Megan Kelly: Vixen; Patrick McDonald: Cupid; Paul Behan: Donner; Jo Hennesy: Blitzen; Ben Nunan: Comet; Michael Sommers: Hollywood; Eoin Nangle Ryan: Dasher"; Crew = "" Link = "pn8rm23.htm#Kilkenny" Theatre = "KATS Theatre Group" City = "Kilkenny"; State = "IRELAND" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "13"; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) Show = "8rm"; Title = "THE EIGHT: Reindeer Monologues" Featuring = "" Director = ""; Cast = "Quinn Fong; Trever Farrington; Logan Sorenson; Matthew Curtiss; Elijah Fraser; Simone Hightower; Alex Matulis; Michael Morafates"; Crew = "" Link = "pn8rm23.htm#Middletown" Theatre = "Middletown High School" City = "Middletown"; State = "CT" YearOpen = "2023"; MonthOpen = "Dec"; DayOpen = "21"; MonthClose = "Dec"; DayClose = "22" upcomingPlaysDisplay(style,matching) Show = "firstlookbuffalo"; Title = "2023-24 New Play Reading Festival, Vol. 2" Featuring = "(with guest responder Robert Moss)" Director = ""; Cast = ""; Crew = "" Link = "plays/pnfirstlookbuffalo2324.htm#ReadingFestival" Theatre = "First Look Buffalo Theatre Company" City = "Buffalo"; State = "NY" YearOpen = "2024"; MonthOpen = "Jan"; DayOpen = "19"; MonthClose = "Jan"; DayClose = "21" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = "Andra Ionescu"; Cast = "Jordan Dodd: Dick Piston; Valentina Askar"; Crew = "" Link = "pndphd24.htm#Wallingford" Theatre = "Choate Rosemary Hall" City = "Wallingford"; State = "CT" YearOpen = "2024"; MonthOpen = "Jan"; DayOpen = "26"; MonthClose = "Jan"; DayClose = "27" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pndphd24.htm#PortofSpain" Theatre = "Better Than We? Wey! Productions" City = "Port of Spain"; State = "TRINIDAD & TOBAGO" YearOpen = "2024"; MonthOpen = "Apr"; DayOpen = "5"; MonthClose = "Apr"; DayClose = "14" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = "Hannah Joy Whitson"; Cast = ""; Crew = "" Link = "pndphd24.htm#Lincoln" Theatre = "Nebraska Wesleyan University" City = "Lincoln"; State = "NE" YearOpen = "2024"; MonthOpen = "Apr"; DayOpen = "22"; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) Show = "dphd dp_10min"; Title = "Murder By Midnight" Featuring = "" Director = "Sarah Byers"; Cast = ""; Crew = "" Link = "pndphd24.htm#Abbotsford" Theatre = "University of the Fraser Valley" City = "Abbotsford"; State = "British Columbia, CANADA" YearOpen = "2024"; MonthOpen = "Apr"; DayOpen = "25"; MonthClose = "Apr"; DayClose = "26" upcomingPlaysDisplay(style,matching) Show = "cheersquad aesoprefabled"; Title = "Cheer Squad" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "plays/pnaesoprefabled24.htm#RockHill" Theatre = "South Pointe High School" City = "Rock Hill"; State = "SC" YearOpen = "2024"; MonthOpen = "May"; DayOpen = "9"; MonthClose = "May"; DayClose = "11" upcomingPlaysDisplay(style,matching) Show = "pra dphd"; Title = "Prague-nosis!" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "pnpra24.htm#Edmonton" Theatre = "Edmonton Fringe Festival" City = "Edmonton"; State = "Alberta, CANADA" YearOpen = "2024"; MonthOpen = "Aug"; DayOpen = "15"; MonthClose = "Aug"; DayClose = "25" upcomingPlaysDisplay(style,matching) Show = "8rm"; Title = "THE EIGHT: Reindeer Monologues" Featuring = "(a virtual play starring the DAT Board of Directors)" Director = ""; Cast = ""; Crew = "" Link = "pn8rm24.htm#Austin" Theatre = "Deaf Austin Theatre" City = "Austin"; State = "TX" YearOpen = "2024"; MonthOpen = "Dec"; DayOpen = "21"; MonthClose = "Dec"; DayClose = "28" upcomingPlaysDisplay(style,matching) // Show = "xmasogre"; Title = "The Christmas Ogre" // Featuring = "" // Link = "plays/pnxmasogre13.htm#Pasadena" // Theatre = "Southern California Lyric Theater" // City = "Pasadena"; State = "CA" // YearOpen = "2014"; MonthOpen = "Dec"; DayOpen = "2014"; MonthClose = ""; DayClose = "" // upcomingPlaysDisplay(style,matching) Show = ""; Title = "" Featuring = "" Director = ""; Cast = ""; Crew = "" Link = "" Theatre = "" City = ""; State = "" YearOpen = ""; MonthOpen = ""; DayOpen = ""; MonthClose = ""; DayClose = "" upcomingPlaysDisplay(style,matching) } // keep this bracket here to end the function upcomingPlays