diff --git a/scripts/generate-site.csx b/scripts/generate-site.csx index 86383de..1d4e259 100755 --- a/scripts/generate-site.csx +++ b/scripts/generate-site.csx @@ -18,6 +18,7 @@ private readonly string OUTPUT_DIR = Path.Combine(BASE_PATH, "site", "partial"); private readonly string CONNECTION_STRING = $"Data Source={Path.Combine(BASE_PATH, "db", "radiostasis.db")}"; private static readonly Regex cleanHost = new(@"^(en|www)\.", RegexOptions.Compiled); +private static readonly Regex cleanFilter = new(@"[^a-z0-9 ]", RegexOptions.Compiled); private class Series { public required string Slug { get; set; } @@ -28,6 +29,7 @@ private class Series { public required short MaxYear { get; set; } public required IEnumerable Tags { get; set; } public string? Description { get; set; } + public string? Actors { get; set; } public required int EpisodeCount { get; set; } public required IEnumerable Urls { get; set; } @@ -54,19 +56,48 @@ private class Series { Description.Split("\n") .Where(l => !string.IsNullOrWhiteSpace(l)) .Select(l => WebUtility.HtmlEncode(l)))); - sb.AppendLine("

Sources: "); - sb.AppendLine(string.Join(", ", - Urls.Select(u => - $"{cleanHost.Replace(new Uri(u).Host, string.Empty)}"))); - sb.AppendLine("

"); + sb.AppendLine("

"); + if (!string.IsNullOrEmpty(Actors)) { + sb.AppendLine( + $"

Performers: {WebUtility.HtmlEncode(Actors)}

"); + } + + if (Urls.Count() > 0) { + sb.AppendLine("

Sources: "); + sb.AppendLine(string.Join(", ", + Urls.Select(u => + $"{cleanHost.Replace(new Uri(u).Host, string.Empty)}"))); + sb.AppendLine("

"); + } + + sb.AppendLine(""); } return sb.ToString(); } } - public string TitleFilter { - get => WebUtility.HtmlEncode(Title.ToLowerInvariant()); + public string FilterText { + get { + var sb = new StringBuilder(); + // add the show's title + sb.Append(Title.ToLowerInvariant()); + + // add all the actors + if (!string.IsNullOrEmpty(Actors)) { + sb.Append(" "); + sb.Append(cleanFilter.Replace(Actors.ToLowerInvariant(), string.Empty)); + } + + // add the decades like 1930s 1940s etc + var firstDecade = (int)(Math.Floor(MinYear / 10d) * 10); + var lastDecade = (int)(Math.Floor(MaxYear / 10d) * 10); + for (var decade = firstDecade; decade <= lastDecade; decade += 10) { + sb.Append($" {decade}s"); + } + + return WebUtility.HtmlEncode(sb.ToString()); + } } } @@ -145,7 +176,8 @@ private IEnumerable GetSeries() { s.description, s.title_sort, count(distinct e.episode_slug) episode_count, - group_concat(l.link_url, '||') urls + group_concat(l.link_url, '||') urls, + s.actors from series s inner join episodes e on e.series_slug=s.series_slug @@ -169,6 +201,7 @@ private IEnumerable GetSeries() { EpisodeCount = reader.GetInt32(7), Tags = tags[slug], Urls = reader.GetString(8).Split("||").Distinct().Order().ToArray(), + Actors = reader.IsDBNull(9) ? null : reader.GetString(9), }); } @@ -215,7 +248,7 @@ private void GenerateSeriesListFragment( sw.Write( @$"

{WebUtility.HtmlEncode(title)}

- +
"); @@ -226,7 +259,7 @@ private void GenerateSeriesListFragment( hx-target='main' hx-push-url='/series/{series.SlugEncoded}' hx-swap='innerHTML show:top' - data-filter='{series.TitleFilter}' + data-filter='{series.FilterText}' title='{series.TitleEncoded}'> cover image diff --git a/site/partial/genre/adventure.html b/site/partial/genre/adventure.html index c619278..5e33e0e 100644 --- a/site/partial/genre/adventure.html +++ b/site/partial/genre/adventure.html @@ -1,6 +1,6 @@

Adventure Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/adventures-by-morse' hx-swap='innerHTML show:top' - data-filter='adventures by morse' + data-filter='adventures by morse elliott lewis david ellis russell thorson barton yarborough jack edwards tony randall 1940s' title='Adventures by Morse'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-ellery-queen' hx-swap='innerHTML show:top' - data-filter='the adventures of ellery queen' + data-filter='the adventures of ellery queen hugh marlowe carleton young sydney smith lawrence dobkin howard culver ken roberts bert parks ernest chappell don hancock paul masterson 1930s 1940s' title='The Adventures of Ellery Queen'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-marco-polo' hx-swap='innerHTML show:top' - data-filter='the adventures of marco polo' + data-filter='the adventures of marco polo gary cooper sigrid gurie basil rathbone ernest truex binnie barnes alan hale hb warner robert greig ferdinand gottschalk henry kolker lotus liu stanley fields harold huber lana turner harry cording jason robards sr charles stevens 1930s' title='The Adventures of Marco Polo'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/afloat-with-henry-morgan' hx-swap='innerHTML show:top' - data-filter='afloat with henry morgan' + data-filter='afloat with henry morgan george edwards maurice francis nell sterling 1930s' title='Afloat with Henry Morgan'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/the-blue-beetle' hx-swap='innerHTML show:top' - data-filter='the blue beetle' + data-filter='the blue beetle frank lovejoy 1940s' title='The Blue Beetle'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/bold-venture' hx-swap='innerHTML show:top' - data-filter='bold venture' + data-filter='bold venture humphrey bogart lauren bacall jester hairston 1950s' title='Bold Venture'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/challenge-of-the-yukon' hx-swap='innerHTML show:top' - data-filter='challenge of the yukon' + data-filter='challenge of the yukon richard simmons brace beemer paul sutton 1930s 1940s 1950s' title='Challenge of the Yukon'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/the-chase' hx-swap='innerHTML show:top' - data-filter='the chase' + data-filter='the chase unknown 1950s' title='The Chase'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/cloak-and-dagger' hx-swap='innerHTML show:top' - data-filter='cloak and dagger' + data-filter='cloak and dagger raymond edward johnson everett sloane jackson beck virginia payne joseph julian jan miner les tremayne maurice tarplin boris aplon martin balsam 1950s' title='Cloak and Dagger'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/the-clyde-beatty-show' hx-swap='innerHTML show:top' - data-filter='the clyde beatty show' + data-filter='the clyde beatty show clyde beatty vic perrin 1950s' title='The Clyde Beatty Show'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/cruise-of-the-poll-parrot' hx-swap='innerHTML show:top' - data-filter='cruise of the poll parrot' + data-filter='cruise of the poll parrot marvin miller 1930s' title='Cruise of the Poll Parrot'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/dangerous-assignment' hx-swap='innerHTML show:top' - data-filter='dangerous assignment' + data-filter='dangerous assignment brian donlevy herb butterfield betty moran 1940s 1950s' title='Dangerous Assignment'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/dangerously-yours' hx-swap='innerHTML show:top' - data-filter='dangerously yours' + data-filter='dangerously yours victor jory 1940s' title='Dangerously Yours'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/ellery-queens-minute-mysteries' hx-swap='innerHTML show:top' - data-filter='ellery queen's minute mysteries' + data-filter='ellery queen's minute mysteries 1930s 1940s' title='Ellery Queen's Minute Mysteries'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/escape' hx-swap='innerHTML show:top' - data-filter='escape' + data-filter='escape elvia allman eleanor audley parley baer michael ann barrett tony barrett harry bartell ted bliss lillian buyeff ken christy william conrad ted de corsia john dehner don diamond paul dubov sam edwards virginia gregg lou merrill howard mcnear jess kirkpatrick dee j thompson shep menken frank gerstle george neise jeanette nolan dan oherlihy barney phillips forrest lewis robert griffin alan reed bill johnstone sandra gould junius matthews carleton g young marvin miller frank lovejoy berry kroeger vic perrin elliott lewis eleanore tanin herb vigran jack webb peggy webber will wright peter leeds hans conreid jennette nolan jay novello jack edwards joan banks 1940s 1950s' title='Escape'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/flash-gordon' hx-swap='innerHTML show:top' - data-filter='flash gordon' + data-filter='flash gordon gale gordon 1930s' title='Flash Gordon'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/the-green-hornet' hx-swap='innerHTML show:top' - data-filter='the green hornet' + data-filter='the green hornet 1930s 1940s 1950s' title='The Green Hornet'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/gunsmoke' hx-swap='innerHTML show:top' - data-filter='gunsmoke' + data-filter='gunsmoke william conrad parley baer howard mcnear georgia ellis 1950s 1960s' title='Gunsmoke'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/high-adventure' hx-swap='innerHTML show:top' - data-filter='high adventure' + data-filter='high adventure 1940s 1950s' title='High Adventure'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/horatio-hornblower' hx-swap='innerHTML show:top' - data-filter='horatio hornblower' + data-filter='horatio hornblower michael redgrave 1950s' title='Horatio Hornblower'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/i-love-a-mystery' hx-swap='innerHTML show:top' - data-filter='i love a mystery' + data-filter='i love a mystery michael raffetto russell thorson jay novello jim bannon john mcintire barton yarborough jim boles walter paterson tony randall gloria blondell 1930s 1940s 1950s' title='I Love a Mystery'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/john-steele-adventurer' hx-swap='innerHTML show:top' - data-filter='john steele, adventurer' + data-filter='john steele, adventurer don douglas john larkin bryna raeburn jack edwards 1940s 1950s' title='John Steele, Adventurer'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/the-lives-of-harry-lime' hx-swap='innerHTML show:top' - data-filter='the lives of harry lime' + data-filter='the lives of harry lime orson welles 1950s' title='The Lives of Harry Lime'> cover image @@ -488,7 +488,7 @@ hx-target='main' hx-push-url='/series/the-lone-ranger' hx-swap='innerHTML show:top' - data-filter='the lone ranger' + data-filter='the lone ranger george seaton earle graser brace beemer james jewell fred foy john todd roland parker jay michael bill saunders paul hughes jane fae rube and liz weiss john hodiak bob martin james lipton dick beals 1930s 1940s 1950s' title='The Lone Ranger'> cover image @@ -508,7 +508,7 @@ hx-target='main' hx-push-url='/series/magic-island' hx-swap='innerHTML show:top' - data-filter='magic island' + data-filter='magic island sally creighton rosa barcelo tommy carr will h reynolds 1930s 1940s' title='Magic Island'> cover image @@ -528,7 +528,7 @@ hx-target='main' hx-push-url='/series/the-man-called-x' hx-swap='innerHTML show:top' - data-filter='the man called x' + data-filter='the man called x herbert marshall leon belasco 1940s 1950s' title='The Man Called X'> cover image @@ -548,7 +548,7 @@ hx-target='main' hx-push-url='/series/mark-trail' hx-swap='innerHTML show:top' - data-filter='mark trail' + data-filter='mark trail matt crowley john larkin staats cotsworth jackson beck 1950s' title='Mark Trail'> cover image @@ -568,7 +568,7 @@ hx-target='main' hx-push-url='/series/moon-over-africa' hx-swap='innerHTML show:top' - data-filter='moon over africa' + data-filter='moon over africa 1930s' title='Moon Over Africa'> cover image @@ -588,7 +588,7 @@ hx-target='main' hx-push-url='/series/ranger-bill' hx-swap='innerHTML show:top' - data-filter='ranger bill' + data-filter='ranger bill miron canaday ed ronne sr 1950s 1960s' title='Ranger Bill'> cover image @@ -608,7 +608,7 @@ hx-target='main' hx-push-url='/series/the-scarlet-pimpernel' hx-swap='innerHTML show:top' - data-filter='the scarlet pimpernel' + data-filter='the scarlet pimpernel marius goring 1950s' title='The Scarlet Pimpernel'> cover image @@ -628,7 +628,7 @@ hx-target='main' hx-push-url='/series/secret-agent-k-7-returns' hx-swap='innerHTML show:top' - data-filter='secret agent k-7 returns' + data-filter='secret agent k-7 returns unknown 1930s' title='Secret Agent K-7 Returns'> cover image @@ -648,7 +648,7 @@ hx-target='main' hx-push-url='/series/speed-gibson-of-the-international-secret-police' hx-swap='innerHTML show:top' - data-filter='speed gibson of the international secret police' + data-filter='speed gibson of the international secret police howard mcnear john gibson gale gordon hanley stafford jack mathers victor rodman sam edwards 1930s 1940s' title='Speed Gibson of the International Secret Police'> cover image @@ -668,7 +668,7 @@ hx-target='main' hx-push-url='/series/superman' hx-swap='innerHTML show:top' - data-filter='superman' + data-filter='superman bud collyer joan alexander julian noa jackie kelk 1940s 1950s' title='Superman'> cover image @@ -688,7 +688,7 @@ hx-target='main' hx-push-url='/series/tarzan-and-the-diamond-of-asher' hx-swap='innerHTML show:top' - data-filter='tarzan and the diamond of asher' + data-filter='tarzan and the diamond of asher 1930s' title='Tarzan and the Diamond of Asher'> cover image @@ -708,7 +708,7 @@ hx-target='main' hx-push-url='/series/tarzan-and-the-fires-of-tohr' hx-swap='innerHTML show:top' - data-filter='tarzan and the fires of tohr' + data-filter='tarzan and the fires of tohr 1930s' title='Tarzan and the Fires of Tohr'> cover image @@ -728,7 +728,7 @@ hx-target='main' hx-push-url='/series/tarzan-of-the-apes' hx-swap='innerHTML show:top' - data-filter='tarzan of the apes' + data-filter='tarzan of the apes joan burroughs jim pierce 1930s' title='Tarzan of the Apes'> cover image @@ -748,7 +748,7 @@ hx-target='main' hx-push-url='/series/tarzan-lord-of-the-jungle' hx-swap='innerHTML show:top' - data-filter='tarzan: lord of the jungle' + data-filter='tarzan: lord of the jungle 1950s' title='Tarzan: Lord of the Jungle'> cover image @@ -768,7 +768,7 @@ hx-target='main' hx-push-url='/series/world-adventurers-club' hx-swap='innerHTML show:top' - data-filter='world adventurer's club' + data-filter='world adventurer's club hanley stafford 1930s' title='World Adventurer's Club'> cover image diff --git a/site/partial/genre/children.html b/site/partial/genre/children.html index efeed4b..7d0c7c6 100644 --- a/site/partial/genre/children.html +++ b/site/partial/genre/children.html @@ -1,6 +1,6 @@

Children Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/adventures-of-champion' hx-swap='innerHTML show:top' - data-filter='adventures of champion' + data-filter='adventures of champion 1940s 1950s' title='Adventures of Champion'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/buck-rogers' hx-swap='innerHTML show:top' - data-filter='buck rogers' + data-filter='buck rogers matt crowley curtis arnall carl frank john larkin adele ronson edgar stehli jack roseleigh joe granby ronald liss elaine melchior william bill shelley dan ocko arthur vinton 1930s 1940s' title='Buck Rogers'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/chick-carter-boy-detective' hx-swap='innerHTML show:top' - data-filter='chick carter, boy detective' + data-filter='chick carter, boy detective bill lipton leon janney jean mccoy joanne mccoy gilbert mack bill griffis stefan schnabel ken powell 1940s' title='Chick Carter, Boy Detective'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/cruise-of-the-poll-parrot' hx-swap='innerHTML show:top' - data-filter='cruise of the poll parrot' + data-filter='cruise of the poll parrot marvin miller 1930s' title='Cruise of the Poll Parrot'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/fire-fighters' hx-swap='innerHTML show:top' - data-filter='fire fighters' + data-filter='fire fighters cameron prudhomme lyle sudrow 1940s 1950s' title='Fire Fighters'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/jerry-at-fair-oaks' hx-swap='innerHTML show:top' - data-filter='jerry at fair oaks' + data-filter='jerry at fair oaks 1930s' title='Jerry at Fair Oaks'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/jerry-of-the-circus' hx-swap='innerHTML show:top' - data-filter='jerry of the circus' + data-filter='jerry of the circus lindsay mcharrie howard mcnear elvia allman buddy duncan 1930s' title='Jerry of the Circus'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/jonathan-thomas-and-his-christmas-on-the-moon' hx-swap='innerHTML show:top' - data-filter='jonathan thomas and his christmas on the moon' + data-filter='jonathan thomas and his christmas on the moon 1930s' title='Jonathan Thomas and His Christmas on the Moon'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/jump-jump-and-the-ice-queen' hx-swap='innerHTML show:top' - data-filter='jump jump and the ice queen' + data-filter='jump jump and the ice queen mary mcconnell harry hickox johnny mcgovern bob mitchell 1940s' title='Jump Jump and the Ice Queen'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/magic-island' hx-swap='innerHTML show:top' - data-filter='magic island' + data-filter='magic island sally creighton rosa barcelo tommy carr will h reynolds 1930s 1940s' title='Magic Island'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/mark-trail' hx-swap='innerHTML show:top' - data-filter='mark trail' + data-filter='mark trail matt crowley john larkin staats cotsworth jackson beck 1950s' title='Mark Trail'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/planet-man' hx-swap='innerHTML show:top' - data-filter='planet man' + data-filter='planet man 1950s' title='Planet Man'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/ranger-bill' hx-swap='innerHTML show:top' - data-filter='ranger bill' + data-filter='ranger bill miron canaday ed ronne sr 1950s 1960s' title='Ranger Bill'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/tales-of-the-diamond-k' hx-swap='innerHTML show:top' - data-filter='tales of the diamond k' + data-filter='tales of the diamond k ken maynard 1950s' title='Tales of the Diamond K'> cover image diff --git a/site/partial/genre/comedy.html b/site/partial/genre/comedy.html index fb949f7..17ca3d7 100644 --- a/site/partial/genre/comedy.html +++ b/site/partial/genre/comedy.html @@ -1,6 +1,6 @@

Comedy Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-ozzie-and-harriet' hx-swap='innerHTML show:top' - data-filter='the adventures of ozzie and harriet' + data-filter='the adventures of ozzie and harriet ozzie nelson harriet nelson david nelson ricky nelson don defore parley baer lyle talbot mary jane croft connie harper skip young gordon jones frank cady elroy williams lloyd corrigan joseph kearns james stacy jack wagner joe flynn kent mccord jimmy hawkins 1940s 1950s' title='The Adventures of Ozzie and Harriet'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/the-aldrich-family' hx-swap='innerHTML show:top' - data-filter='the aldrich family' + data-filter='the aldrich family eddie bracken betty field butterfly mcqueen ezra stone jackie kelk dickie jones raymond ives bobby ellis agnes moorehead 1930s 1940s 1950s' title='The Aldrich Family'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/all-star-western-theatre' hx-swap='innerHTML show:top' - data-filter='all star western theatre' + data-filter='all star western theatre foy willing kenny driver al sloey johnny paul johnny mack brown 1940s' title='All Star Western Theatre'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/amos-n-andy' hx-swap='innerHTML show:top' - data-filter='amos 'n' andy' + data-filter='amos 'n' andy freeman gosden charles correll 1920s 1930s 1940s 1950s 1960s' title='Amos 'n' Andy'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/archie-andrews' hx-swap='innerHTML show:top' - data-filter='archie andrews' + data-filter='archie andrews 1940s 1950s' title='Archie Andrews'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/the-baby-snooks-show' hx-swap='innerHTML show:top' - data-filter='the baby snooks show' + data-filter='the baby snooks show fanny brice hanley stafford lalive brownell leone ledoux danny thomas ben alexander elvia allman sara berner charlie cantor ken christy earl lee frank nelson lillian randolph alan reed irene tedrow lois corbet arlene harris 1940s 1950s' title='The Baby Snooks Show'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/beulah' hx-swap='innerHTML show:top' - data-filter='beulah' + data-filter='beulah marlin hurt hattie mcdaniel lillian randolph amanda randolph bob corley ethel waters louise beavers 1940s 1950s' title='Beulah'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/the-bickersons' hx-swap='innerHTML show:top' - data-filter='the bickersons' + data-filter='the bickersons don ameche frances langford lew parker 1940s 1950s' title='The Bickersons'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/the-big-show' hx-swap='innerHTML show:top' - data-filter='the big show' + data-filter='the big show tallulah bankhead ethel merman danny thomas fanny brice phil silvers bob hope clifton webb gloria swanson marlene dietrich judy holliday ethel barrymore jimmy durante milton berle josephine baker laurence olivier vivien leigh george sanders yul brynner shirley booth peggy lee rosalind russell merv griffin 1950s' title='The Big Show'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/blondie' hx-swap='innerHTML show:top' - data-filter='blondie' + data-filter='blondie arthur lake penny singleton ann rutherford alice white patricia van cleve leone ledoux 1930s 1940s 1950s' title='Blondie'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/bob-and-ray' hx-swap='innerHTML show:top' - data-filter='bob and ray' + data-filter='bob and ray bob elliott ray goulding 1940s 1950s 1960s 1970s 1980s' title='Bob and Ray'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/the-burns-and-allen-show' hx-swap='innerHTML show:top' - data-filter='the burns and allen show' + data-filter='the burns and allen show george burns gracie allen 1930s 1940s 1950s' title='The Burns and Allen Show'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/club-car-special' hx-swap='innerHTML show:top' - data-filter='club car special' + data-filter='club car special 1930s' title='Club Car Special'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/comic-weekly-man' hx-swap='innerHTML show:top' - data-filter='comic weekly man' + data-filter='comic weekly man lon clark 1940s 1950s' title='Comic Weekly Man'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/command-performance' hx-swap='innerHTML show:top' - data-filter='command performance' + data-filter='command performance jane russell bob hope major meredith willson bing crosby jack benny frank sinatra fred allen ginger rogers judy garland lena horne the andrews sisters orson welles ann miller carole landis lucille ball errol flynn 1940s' title='Command Performance'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/the-danny-kaye-show' hx-swap='innerHTML show:top' - data-filter='the danny kaye show' + data-filter='the danny kaye show danny kaye eve arden frank nelson lionel stander kenny delmar everett sloane joan edwards butterfly mcqueen 1940s' title='The Danny Kaye Show'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/a-date-with-judy' hx-swap='innerHTML show:top' - data-filter='a date with judy' + data-filter='a date with judy ann gillis mercedes mccambridge dellie ellis louise erickson paul mcgrath margaret brayton stanley farrar joseph kearns john brown bea benaderet georgia backus lois corbet myra marsh richard crenna jane powell wallace beery elizabeth taylor robert stack carmen miranda pat crowley mary linn beller john gibson flora campbell peter avramo jimmy sommer 1940s 1950s' title='A Date with Judy'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/duffys-tavern' hx-swap='innerHTML show:top' - data-filter='duffy's tavern' + data-filter='duffy's tavern ed gardner shirley booth florence halop hazel shermet charlie cantor eddie green fats pichon alan reed 1940s 1950s' title='Duffy's Tavern'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/edgar-bergen--charlie-mccarthy' hx-swap='innerHTML show:top' - data-filter='edgar bergen & charlie mccarthy' + data-filter='edgar bergen & charlie mccarthy edgar bergen judy canova don ameche dorothy lamour wc fields mae west ray noble miriam hopkins fred allen lucille ball frank sinatra liberace tallullah gary cooper fats waller gordon macrae betty hutton carole lombard linda darnell rita hayworth judy garland lena horne marilyn monroe rosemary clooney susan hayward anita louise hildegarde loretta sell johh garfield betty grable gene tierney lana turner veronica lake sydney greenstreet greer garson basil rathbone orson welles 1930s 1940s 1950s' title='Edgar Bergen & Charlie McCarthy'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/an-evening-with-groucho' hx-swap='innerHTML show:top' - data-filter='an evening with groucho' + data-filter='an evening with groucho groucho marx george fenneman 1970s' title='An Evening With Groucho'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/father-knows-best' hx-swap='innerHTML show:top' - data-filter='father knows best' + data-filter='father knows best robert young june whitley jean vander pyl rhoda williams ted donaldson norma jean nilsson 1940s 1950s' title='Father Knows Best'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/fibber-mcgee-and-molly' hx-swap='innerHTML show:top' - data-filter='fibber mcgee and molly' + data-filter='fibber mcgee and molly jim jordan marian jordan 1930s 1940s 1950s' title='Fibber McGee and Molly'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/first-nighter' hx-swap='innerHTML show:top' - data-filter='first nighter' + data-filter='first nighter charles p hughes june meredith macdonald carey bret morrison marvin miller don briggs rye billsbury don ameche betty lou gerson les tremayne barbara luddy olan soule 1930s 1940s 1950s' title='First Nighter'> cover image @@ -488,7 +488,7 @@ hx-target='main' hx-push-url='/series/the-fred-allen-show' hx-swap='innerHTML show:top' - data-filter='the fred allen show' + data-filter='the fred allen show fred allen portland hoffa minerva pious parker fennelly jack smart alan reed john brown charlie cantor ken roberts edmund ruffner harry von zell arthur godfrey jimmy wallington kenny delmar 1930s 1940s' title='The Fred Allen Show'> cover image @@ -508,7 +508,7 @@ hx-target='main' hx-push-url='/series/grand-ole-opry' hx-swap='innerHTML show:top' - data-filter='grand ole opry' + data-filter='grand ole opry 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 2020s' title='Grand Ole Opry'> cover image @@ -528,7 +528,7 @@ hx-target='main' hx-push-url='/series/the-great-gildersleeve' hx-swap='innerHTML show:top' - data-filter='the great gildersleeve' + data-filter='the great gildersleeve harold peary willard waterman walter tetley lurene tuttle louise erickson mary lee robb lillian randolph richard crenna barbara whiting earle ross richard legrand arthur q bryan shirley mitchell bea benaderet una merkel martha scott cathy lewis gale gordon mel blanc conrad binyon mary costa 1940s 1950s' title='The Great Gildersleeve'> cover image @@ -548,7 +548,7 @@ hx-target='main' hx-push-url='/series/halls-of-ivy' hx-swap='innerHTML show:top' - data-filter='halls of ivy' + data-filter='halls of ivy ronald colman benita hume herbert butterfield willard waterman elizabeth patterson gloria gordon alan reed virginia gregg lee patrick jean vander pyl rolfe sedan sidney miller william tracy sam edwards arthur q bryan barton yarborough james gleason jerry hausner 1950s' title='Halls of Ivy'> cover image @@ -568,7 +568,7 @@ hx-target='main' hx-push-url='/series/the-harold-peary-show' hx-swap='innerHTML show:top' - data-filter='the harold peary show' + data-filter='the harold peary show harold peary gloria holiday joseph kearns mary jane croft parley baer 1950s' title='The Harold Peary Show'> cover image @@ -588,7 +588,7 @@ hx-target='main' hx-push-url='/series/the-jack-benny-program' hx-swap='innerHTML show:top' - data-filter='the jack benny program' + data-filter='the jack benny program jack benny sadye marks ethel shutta george olsen don wilson james melton frank parker michael bartlett kenny baker dennis day eddie anderson bob crosby 1930s 1940s 1950s' title='The Jack Benny Program'> cover image @@ -608,7 +608,7 @@ hx-target='main' hx-push-url='/series/the-life-of-riley' hx-swap='innerHTML show:top' - data-filter='the life of riley' + data-filter='the life of riley william bendix john brown grace coppin paula winslowe peggy conklin sharon douglas barbara eiler shirley mitchell francis dink trout tommy cook bobby ellis scotty beckett hans conried alan reed mel blanc wesley morgan 1940s 1950s' title='The Life of Riley'> cover image @@ -628,7 +628,7 @@ hx-target='main' hx-push-url='/series/life-with-luigi' hx-swap='innerHTML show:top' - data-filter='life with luigi' + data-filter='life with luigi j carroll naish hans conried alan reed jody gilbert mary shipp gil stratton joe forte ken peters 1940s 1950s' title='Life with Luigi'> cover image @@ -648,7 +648,7 @@ hx-target='main' hx-push-url='/series/lum-and-abner' hx-swap='innerHTML show:top' - data-filter='lum and abner' + data-filter='lum and abner chester lauck norris goff 1930s 1940s 1950s' title='Lum and Abner'> cover image @@ -668,7 +668,7 @@ hx-target='main' hx-push-url='/series/mama-blooms-brood' hx-swap='innerHTML show:top' - data-filter='mama bloom's brood' + data-filter='mama bloom's brood jake becky yetta sarah harold sidney 1930s' title='Mama Bloom's Brood'> cover image @@ -688,7 +688,7 @@ hx-target='main' hx-push-url='/series/the-martin-and-lewis-show' hx-swap='innerHTML show:top' - data-filter='the martin and lewis show' + data-filter='the martin and lewis show dean martin jerry lewis 1940s 1950s' title='The Martin and Lewis Show'> cover image @@ -708,7 +708,7 @@ hx-target='main' hx-push-url='/series/meet-corliss-archer' hx-swap='innerHTML show:top' - data-filter='meet corliss archer' + data-filter='meet corliss archer priscilla lyon janet waldo lugene sanders bill christy sam edwards bob bailey fred shields frank martin irene tedrow monty margetts gloria holden bebe young barbara whiting tommy bernard kenny godkin delores crane ann baker mary brian robin morgan warren berlinger 1940s 1950s' title='Meet Corliss Archer'> cover image @@ -728,7 +728,7 @@ hx-target='main' hx-push-url='/series/the-mel-blanc-show' hx-swap='innerHTML show:top' - data-filter='the mel blanc show' + data-filter='the mel blanc show mel blanc mary jane croft joseph kearns hans conreid alan reed earle ross jim backus bea benaderet the sportsmen quartet 1940s' title='The Mel Blanc Show'> cover image @@ -748,7 +748,7 @@ hx-target='main' hx-push-url='/series/my-favorite-husband' hx-swap='innerHTML show:top' - data-filter='my favorite husband' + data-filter='my favorite husband lucille ball richard denning hans conried joseph kearns gale gordon bea benaderet 1940s 1950s' title='My Favorite Husband'> cover image @@ -768,7 +768,7 @@ hx-target='main' hx-push-url='/series/my-friend-irma' hx-swap='innerHTML show:top' - data-filter='my friend irma' + data-filter='my friend irma marie wilson cathy lewis john brown hans conreid lief erickson alan reed joan banks mary shipp kenny delmar bea benaderet 1940s 1950s' title='My Friend Irma'> cover image @@ -788,7 +788,7 @@ hx-target='main' hx-push-url='/series/old-gold-comedy-theater' hx-swap='innerHTML show:top' - data-filter='old gold comedy theater' + data-filter='old gold comedy theater harold lloyd 1940s' title='Old Gold Comedy Theater'> cover image @@ -808,7 +808,7 @@ hx-target='main' hx-push-url='/series/our-miss-brooks' hx-swap='innerHTML show:top' - data-filter='our miss brooks' + data-filter='our miss brooks eve arden gale gordon jeff chandler richard crenna jane morgan announcer bob lemond verne smith hy averback 1940s 1950s' title='Our Miss Brooks'> cover image @@ -828,7 +828,7 @@ hx-target='main' hx-push-url='/series/people-are-funny' hx-swap='innerHTML show:top' - data-filter='people are funny' + data-filter='people are funny art baker art linkletter flip wilson 1940s 1950s 1960s' title='People are Funny'> cover image @@ -848,7 +848,7 @@ hx-target='main' hx-push-url='/series/the-phil-harris-alice-faye-show' hx-swap='innerHTML show:top' - data-filter='the phil harris-alice faye show' + data-filter='the phil harris-alice faye show phil harris alice faye elliott lewis jeanine roose anne whitfield walter tetley gale gordon robert north bill forman 1940s 1950s' title='The Phil Harris-Alice Faye Show'> cover image @@ -868,7 +868,7 @@ hx-target='main' hx-push-url='/series/the-red-skelton-show' hx-swap='innerHTML show:top' - data-filter='the red skelton show' + data-filter='the red skelton show red skelton mickey rooney 1950s 1960s 1970s' title='The Red Skelton Show'> cover image @@ -888,7 +888,7 @@ hx-target='main' hx-push-url='/series/vic-and-sade' hx-swap='innerHTML show:top' - data-filter='vic and sade' + data-filter='vic and sade art van harvey bernardine flynn bill idelson clarence hartzell david whitehouse 1930s 1940s 1950s' title='Vic and Sade'> cover image @@ -908,7 +908,7 @@ hx-target='main' hx-push-url='/series/you-bet-your-life' hx-swap='innerHTML show:top' - data-filter='you bet your life' + data-filter='you bet your life groucho marx buddy hackett bill cosby jay leno 1940s 1950s 1960s' title='You Bet Your Life'> cover image diff --git a/site/partial/genre/crime.html b/site/partial/genre/crime.html index ab7077e..21e4c38 100644 --- a/site/partial/genre/crime.html +++ b/site/partial/genre/crime.html @@ -1,6 +1,6 @@

Crime Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/the-big-story' hx-swap='innerHTML show:top' - data-filter='the big story' + data-filter='the big story 1940s 1950s' title='The Big Story'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/black-museum' hx-swap='innerHTML show:top' - data-filter='the black museum' + data-filter='the black museum orson welles robert rietti keith pyott joe mccormick harp mcguire michael york 1950s' title='The Black Museum'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/calling-all-cars' hx-swap='innerHTML show:top' - data-filter='calling all cars' + data-filter='calling all cars 1930s' title='Calling All Cars'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/case-dismissed' hx-swap='innerHTML show:top' - data-filter='case dismissed' + data-filter='case dismissed unknown 1950s' title='Case Dismissed'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/challenge-of-the-yukon' hx-swap='innerHTML show:top' - data-filter='challenge of the yukon' + data-filter='challenge of the yukon richard simmons brace beemer paul sutton 1930s 1940s 1950s' title='Challenge of the Yukon'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/crime-classics' hx-swap='innerHTML show:top' - data-filter='crime classics' + data-filter='crime classics lou merrill 1950s' title='Crime Classics'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/dragnet' hx-swap='innerHTML show:top' - data-filter='dragnet' + data-filter='dragnet jack webb barton yarborough barney phillips harry bartell herb ellis vic perrin ben alexander charles mcgraw raymond burr harry morgan tol avery various 1940s 1950s' title='Dragnet'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/the-fbi-in-peace-and-war' hx-swap='innerHTML show:top' - data-filter='the fbi in peace and war' + data-filter='the fbi in peace and war martin blaine donald briggs andre baruch hugh holder dick noel len sterling warren sweeney lisa loughlin 1940s 1950s' title='The FBI in Peace and War'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/gangbusters' hx-swap='innerHTML show:top' - data-filter='gang busters' + data-filter='gang busters 1930s 1940s 1950s' title='Gang Busters'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/in-the-name-of-the-law' hx-swap='innerHTML show:top' - data-filter='in the name of the law' + data-filter='in the name of the law 1930s' title='In the Name of the Law'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/the-line-up' hx-swap='innerHTML show:top' - data-filter='the line-up' + data-filter='the line-up bill johnstone joseph kearns wally maher warner anderson 1950s 1960s' title='The Line-Up'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/the-lives-of-harry-lime' hx-swap='innerHTML show:top' - data-filter='the lives of harry lime' + data-filter='the lives of harry lime orson welles 1950s' title='The Lives of Harry Lime'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/mr-district-attorney' hx-swap='innerHTML show:top' - data-filter='mr. district attorney' + data-filter='mr. district attorney dwight weist raymond edward johnson jay jostyn david brian maurice franklin vicki vola walter kinsella len doyle paul stewart frank lovejoy eleanor silver arlene francis 1930s 1940s 1950s' title='Mr. District Attorney'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/murder-by-experts' hx-swap='innerHTML show:top' - data-filter='murder by experts' + data-filter='murder by experts lawson zerbe ann shepherd santos ortega ralph bell william zuckert 1940s 1950s' title='Murder by Experts'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/mystery-is-my-hobby' hx-swap='innerHTML show:top' - data-filter='mystery is my hobby' + data-filter='mystery is my hobby glen lagan 1940s' title='Mystery is My Hobby'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/perry-mason' hx-swap='innerHTML show:top' - data-filter='perry mason' + data-filter='perry mason bartlett robinson santos ortega donald briggs john larkin gertrude warner joan alexander matt crowley charles webster jan miner mandel kramer frank dane mercedes mccambridge 1940s 1950s' title='Perry Mason'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/police-headquarters' hx-swap='innerHTML show:top' - data-filter='police headquarters' + data-filter='police headquarters 1930s' title='Police Headquarters'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/police-reporter' hx-swap='innerHTML show:top' - data-filter='police reporter' + data-filter='police reporter 1930s' title='Police Reporter'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/secrets-of-scotland-yard' hx-swap='innerHTML show:top' - data-filter='secrets of scotland yard' + data-filter='secrets of scotland yard clive brook 1940s 1950s' title='Secrets of Scotland Yard'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/the-shadow' hx-swap='innerHTML show:top' - data-filter='the shadow' + data-filter='the shadow orson welles frank readick 1930s 1940s' title='The Shadow'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/stand-by-for-crime' hx-swap='innerHTML show:top' - data-filter='stand by for crime' + data-filter='stand by for crime glen langen adele jurgens 1950s' title='Stand By for Crime'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/this-is-your-fbi' hx-swap='innerHTML show:top' - data-filter='this is your fbi' + data-filter='this is your fbi stacy harris william conrad bea benaderet jay c flippen betty white herb ellis michael ann barrett carleton young georgia ellis 1940s 1950s' title='This is Your FBI'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/whitehall-1212' hx-swap='innerHTML show:top' - data-filter='whitehall 1212' + data-filter='whitehall 1212 londonbased actors 1950s' title='Whitehall 1212'> cover image diff --git a/site/partial/genre/detective.html b/site/partial/genre/detective.html index 09821c6..271da60 100644 --- a/site/partial/genre/detective.html +++ b/site/partial/genre/detective.html @@ -1,6 +1,6 @@

Detective Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-frank-race' hx-swap='innerHTML show:top' - data-filter='the adventures of frank race' + data-filter='the adventures of frank race tom collins paul dubov tony barrett jack kruschen wilms herbert lillian buyeff frank lovejoy harry lang 1940s 1950s' title='The Adventures of Frank Race'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/adventures-of-philip-marlowe' hx-swap='innerHTML show:top' - data-filter='adventures of philip marlowe' + data-filter='adventures of philip marlowe van heflin gerald mohr william conrad 1940s 1950s' title='Adventures of Philip Marlowe'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-sam-spade' hx-swap='innerHTML show:top' - data-filter='the adventures of sam spade' + data-filter='the adventures of sam spade howard duff steve dunne lurene tuttle john mcintire william conrad 1940s 1950s' title='The Adventures of Sam Spade'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/barrie-craig-confidential-investigator' hx-swap='innerHTML show:top' - data-filter='barrie craig, confidential investigator' + data-filter='barrie craig, confidential investigator william gargan ralph bell elspeth eric parker fennelly santos ortega arnold moss parley baer virginia gregg betty lou gerson 1950s' title='Barrie Craig, Confidential Investigator'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/blair-of-the-mounties' hx-swap='innerHTML show:top' - data-filter='blair of the mounties' + data-filter='blair of the mounties colonel rhys davies jack abbott jack french 1930s 1940s 1950s' title='Blair of the Mounties'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/boston-blackie' hx-swap='innerHTML show:top' - data-filter='boston blackie' + data-filter='boston blackie chester morris richard kollmar lesley woods harlow wilcox maurice tarplin jan miner 1940s 1950s' title='Boston Blackie'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/box-13' hx-swap='innerHTML show:top' - data-filter='box 13' + data-filter='box 13 alan ladd sylvia picker edmund macdonald betty lou gerson lurene tuttle alan reed luis van rooten john beal frank lovejoy 1940s' title='Box 13'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/broadway-is-my-beat' hx-swap='innerHTML show:top' - data-filter='broadway is my beat' + data-filter='broadway is my beat anthony ross larry thor charles calvert jack kruschen irene tedrow barney phillips lamont johnson herb ellis hy averback edgar barrier betty lou gerson harry bartell sheldon leonard martha wentworth lawrence dobkin mary jane croft 1940s 1950s' title='Broadway is My Beat'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/bulldog-drummond' hx-swap='innerHTML show:top' - data-filter='bulldog drummond' + data-filter='bulldog drummond george coulouris santos ortega ned wever cedric hardwicke everett sloane luis van rooten rod hendrickson agnes moorehead paul stewart ray collins mercedes mccambridge ted brown henry morgan robert shepard 1940s 1950s' title='Bulldog Drummond'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/candy-matson-yukon-2-8209' hx-swap='innerHTML show:top' - data-filter='candy matson, yukon 2-8209' + data-filter='candy matson, yukon 2-8209 natalie parks henry leff jack thomas helen kleeb john grober mary milford hal burdick dudley manlove 1940s 1950s' title='Candy Matson, YUkon 2-8209'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/a-case-for-dr-morelle' hx-swap='innerHTML show:top' - data-filter='a case for dr. morelle' + data-filter='a case for dr. morelle cecil parker sheila sim jane grahame 1950s' title='A Case for Dr. Morelle'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/casey-crime-photographer' hx-swap='innerHTML show:top' - data-filter='casey, crime photographer' + data-filter='casey, crime photographer matt crowley jim backus staats cotsworth jan miner lesley woods john gibson tony marvin 1940s 1950s' title='Casey, Crime Photographer'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/charlie-chan' hx-swap='innerHTML show:top' - data-filter='charlie chan' + data-filter='charlie chan warner oland manuel arb sidney toler roland winters ross martin peter ustinov 1920s 1930s 1940s' title='Charlie Chan'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/chick-carter-boy-detective' hx-swap='innerHTML show:top' - data-filter='chick carter, boy detective' + data-filter='chick carter, boy detective bill lipton leon janney jean mccoy joanne mccoy gilbert mack bill griffis stefan schnabel ken powell 1940s' title='Chick Carter, Boy Detective'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/crime-and-peter-chambers' hx-swap='innerHTML show:top' - data-filter='crime and peter chambers' + data-filter='crime and peter chambers dane clark bill zuckert fran carlon roger dekoven william griffis leon janney bryna raeburn elaine rost everett sloane edgar stehli evelyn varden patricia wheel lesley woods lawson zerbe 1950s' title='Crime and Peter Chambers'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/danger-dr-danfield' hx-swap='innerHTML show:top' - data-filter='danger, dr. danfield' + data-filter='danger, dr. danfield michael dunn joanne johnson 1940s' title='Danger, Dr. Danfield'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/the-falcon' hx-swap='innerHTML show:top' - data-filter='the falcon' + data-filter='the falcon berry kroeger james meighan les tremayne george petrie les damon joan banks elspeth eric joan alexander mandel kramer ken lynch 1940s 1950s' title='The Falcon'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/jeff-regan-investigator' hx-swap='innerHTML show:top' - data-filter='jeff regan, investigator' + data-filter='jeff regan, investigator jack webb frank graham paul dubov 1940s 1950s' title='Jeff Regan, Investigator'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/let-george-do-it' hx-swap='innerHTML show:top' - data-filter='let george do it' + data-filter='let george do it bob bailey olan soule frances robinson virginia gregg lillian buyeff eddie firestone wally maher joseph kearns 1940s 1950s' title='Let George Do It'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/michael-shayne' hx-swap='innerHTML show:top' - data-filter='michael shayne' + data-filter='michael shayne wally maher louise arthur joe forte cathy lewis jeff chandler donald curtis robert sterling vinton hayworth judith parrish richard denning 1940s 1950s' title='Michael Shayne'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/mr-and-mrs-north' hx-swap='innerHTML show:top' - data-filter='mr. and mrs. north' + data-filter='mr. and mrs. north alice frost joseph curtin richard denning barbara britton frank lovejoy walter kinsella mandel kramer 1940s 1950s' title='Mr. and Mrs. North'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/mr-keen-tracer-of-lost-persons' hx-swap='innerHTML show:top' - data-filter='mr. keen, tracer of lost persons' + data-filter='mr. keen, tracer of lost persons bennett kilpack philip clarke arthur hughes jim kelly 1930s 1940s 1950s' title='Mr. Keen, Tracer of Lost Persons'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/mr-moto' hx-swap='innerHTML show:top' - data-filter='mr. moto' + data-filter='mr. moto peter lorre henry silva james monk 1930s 1940s 1950s' title='Mr. Moto'> cover image @@ -488,7 +488,7 @@ hx-target='main' hx-push-url='/series/mystery-is-my-hobby' hx-swap='innerHTML show:top' - data-filter='mystery is my hobby' + data-filter='mystery is my hobby glen lagan 1940s' title='Mystery is My Hobby'> cover image @@ -508,7 +508,7 @@ hx-target='main' hx-push-url='/series/nero-wolfe-cbc' hx-swap='innerHTML show:top' - data-filter='nero wolfe (cbc)' + data-filter='nero wolfe (cbc) mavor moore don francks cec linder frank perry alfie scopp fiona reid jack creley neil munro jackie burroughs lally cadeau jayne eastwood brian george martha gibson lynne griffin barbara hamilton patricia hamilton helen hughs charmion king budd knapp maria loma arch mcdonnell meana e meana mary peery eric peterson august schellenberg ailine seaton terry tweed sandy webster 1980s' title='Nero Wolfe (CBC)'> cover image @@ -528,7 +528,7 @@ hx-target='main' hx-push-url='/series/the-new-adventures-of-nero-wolfe' hx-swap='innerHTML show:top' - data-filter='the new adventures of nero wolfe' + data-filter='the new adventures of nero wolfe santos ortega luis van rooten francis x bushman sydney greenstreet lawrence dobkin gerald mohr harry bartell herb ellis lamont johnson wally maher 1950s' title='The New Adventures of Nero Wolfe'> cover image @@ -548,7 +548,7 @@ hx-target='main' hx-push-url='/series/nick-carter-master-detective' hx-swap='innerHTML show:top' - data-filter='nick carter, master detective' + data-filter='nick carter, master detective lon clark helen choate charlotte manson john kane ed latimer bill lipton leon janney raymond edward johnson bill johnstone bryna raeburn michael fitzmaurice 1940s 1950s' title='Nick Carter, Master Detective'> cover image @@ -568,7 +568,7 @@ hx-target='main' hx-push-url='/series/night-beat' hx-swap='innerHTML show:top' - data-filter='night beat' + data-filter='night beat frank lovejoy donald rickles joan banks parley baer william conrad jeff corey lawrence dobkin paul frees jack kruschen peter leeds howard mcnear lurene tuttle martha wentworth ben wright 1950s' title='Night Beat'> cover image @@ -588,7 +588,7 @@ hx-target='main' hx-push-url='/series/pat-novak-for-hire' hx-swap='innerHTML show:top' - data-filter='pat novak, for hire' + data-filter='pat novak, for hire jack webb ben morris raymond burr tudor owen john galbraith phyllis skelton 1940s' title='Pat Novak, for Hire'> cover image @@ -608,7 +608,7 @@ hx-target='main' hx-push-url='/series/philo-vance' hx-swap='innerHTML show:top' - data-filter='philo vance' + data-filter='philo vance jose ferrer jackson beck george petrie joan alexander 1940s 1950s' title='Philo Vance'> cover image @@ -628,7 +628,7 @@ hx-target='main' hx-push-url='/series/richard-diamond-private-detective' hx-swap='innerHTML show:top' - data-filter='richard diamond, private detective' + data-filter='richard diamond, private detective dick powell virginia gregg ed begley arthur q bryan ted decorsia alan reed wilms herbert 1940s 1950s 1960s' title='Richard Diamond, Private Detective'> cover image @@ -648,7 +648,7 @@ hx-target='main' hx-push-url='/series/rocky-fortune' hx-swap='innerHTML show:top' - data-filter='rocky fortune' + data-filter='rocky fortune frank sinatra barney phillips raymond burr ed begley jack kruschen 1950s' title='Rocky Fortune'> cover image @@ -668,7 +668,7 @@ hx-target='main' hx-push-url='/series/rocky-jordan' hx-swap='innerHTML show:top' - data-filter='rocky jordan' + data-filter='rocky jordan jack moyles george raft jay novello lawrence dobkin lou krugman larry thor 1940s 1950s' title='Rocky Jordan'> cover image @@ -688,7 +688,7 @@ hx-target='main' hx-push-url='/series/rogues-gallery' hx-swap='innerHTML show:top' - data-filter='rogue's gallery' + data-filter='rogue's gallery dick powell lou merrill gerald mohr gloria blondell tony barrett lurene tuttle barry sullivan chester morris paul stewart 1940s 1950s' title='Rogue's Gallery'> cover image @@ -708,7 +708,7 @@ hx-target='main' hx-push-url='/series/the-saint' hx-swap='innerHTML show:top' - data-filter='the saint' + data-filter='the saint edgar barrier brian aherne vincent price tom conway barry sullivan 1940s 1950s' title='The Saint'> cover image @@ -728,7 +728,7 @@ hx-target='main' hx-push-url='/series/sherlock-holmes' hx-swap='innerHTML show:top' - data-filter='sherlock holmes' + data-filter='sherlock holmes william gillette clive brook richard gordon louis hector leigh lovell harry west joseph bell sir john gielgud sir ralph richardson orson welles 1930s 1940s 1950s' title='Sherlock Holmes'> cover image @@ -748,7 +748,7 @@ hx-target='main' hx-push-url='/series/yours-truly-johnny-dollar' hx-swap='innerHTML show:top' - data-filter='yours truly, johnny dollar' + data-filter='yours truly, johnny dollar dick powell charles russell edmond obrien john lund gerald mohr bob bailey bob readick mandel kramer 1940s 1950s 1960s' title='Yours Truly, Johnny Dollar'> cover image diff --git a/site/partial/genre/documentary.html b/site/partial/genre/documentary.html index 7fbc8b5..8730dc7 100644 --- a/site/partial/genre/documentary.html +++ b/site/partial/genre/documentary.html @@ -1,6 +1,6 @@

Documentary Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/can-you-imagine-that' hx-swap='innerHTML show:top' - data-filter='can you imagine that' + data-filter='can you imagine that 1940s' title='Can You Imagine That'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/classic-baseball-mlb' hx-swap='innerHTML show:top' - data-filter='classic baseball mlb' + data-filter='classic baseball mlb 1920s 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 2020s' title='Classic Baseball MLB'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/complete-broadcast-day-d-day' hx-swap='innerHTML show:top' - data-filter='cbs complete broadcast day (1944)' + data-filter='cbs complete broadcast day (1944) 1940s' title='CBS Complete Broadcast Day (1944)'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/dear-adolf' hx-swap='innerHTML show:top' - data-filter='dear adolf' + data-filter='dear adolf 1940s' title='Dear Adolf'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/heritage-over-the-land' hx-swap='innerHTML show:top' - data-filter='heritage over the land' + data-filter='heritage over the land 1950s' title='Heritage Over the Land'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/incredible-but-true' hx-swap='innerHTML show:top' - data-filter='incredible, but true' + data-filter='incredible, but true ken nordine 1950s' title='Incredible, But True'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/one-world-flight' hx-swap='innerHTML show:top' - data-filter='one world flight' + data-filter='one world flight 1940s' title='One World Flight'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/the-pacific-story' hx-swap='innerHTML show:top' - data-filter='the pacific story' + data-filter='the pacific story gayne williams henry luce pearl s buck 1940s' title='The Pacific Story'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/recollections-at-30' hx-swap='innerHTML show:top' - data-filter='recollections at 30' + data-filter='recollections at 30 judy garland h v kaltenborn irving berlin sophie tucker al jolson red skelton rudy vallee lynn fontanne alfred lunt connie boswell irene dunne fats waller dinah shore 1950s' title='Recollections at 30'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/ripleys-believe-it-or-not' hx-swap='innerHTML show:top' - data-filter='ripley's believe it or not' + data-filter='ripley's believe it or not robert ripley 1930s 1940s' title='Ripley's Believe It Or Not'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/ripleys-one-minute-shorts' hx-swap='innerHTML show:top' - data-filter='ripley's one minute shorts' + data-filter='ripley's one minute shorts 1930s 1940s' title='Ripley's One Minute Shorts'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/the-sound-of-war' hx-swap='innerHTML show:top' - data-filter='the sound of war' + data-filter='the sound of war david greenspan bud greenspan 1950s 1960s' title='The Sound of War'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/strange-as-it-seems' hx-swap='innerHTML show:top' - data-filter='strange as it seems' + data-filter='strange as it seems gayne whitman cyril armbrister felix mills 1930s 1940s' title='Strange as it Seems'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/we-came-this-way' hx-swap='innerHTML show:top' - data-filter='we came this way' + data-filter='we came this way dana andrews 1940s' title='We Came This Way'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/wjsv-complete-broadcast-day' hx-swap='innerHTML show:top' - data-filter='wjsv complete broadcast day' + data-filter='wjsv complete broadcast day 1930s' title='WJSV Complete Broadcast Day'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/you-are-there' hx-swap='innerHTML show:top' - data-filter='you are there' + data-filter='you are there richard c hottelet john daly don hollenbeck canada lee martin gabel john cassavetes james dean vivi janiss paul newman jeanette nolan 1940s 1950s' title='You Are There'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/you-cant-do-business-with-hitler' hx-swap='innerHTML show:top' - data-filter='you can't do business with hitler' + data-filter='you can't do business with hitler 1940s' title='You Can't Do Business With Hitler'> cover image diff --git a/site/partial/genre/drama.html b/site/partial/genre/drama.html index 34e3c26..452c470 100644 --- a/site/partial/genre/drama.html +++ b/site/partial/genre/drama.html @@ -1,6 +1,6 @@

Drama Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/bright-star' hx-swap='innerHTML show:top' - data-filter='bright star' + data-filter='bright star irene dunne fred macmurray 1950s' title='Bright Star'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/can-you-imagine-that' hx-swap='innerHTML show:top' - data-filter='can you imagine that' + data-filter='can you imagine that 1940s' title='Can You Imagine That'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/cbs-radio-workshop' hx-swap='innerHTML show:top' - data-filter='cbs radio workshop' + data-filter='cbs radio workshop 1950s' title='CBS Radio Workshop'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/claudia' hx-swap='innerHTML show:top' - data-filter='claudia' + data-filter='claudia patricia ryan richard kollmar kathryn bard paul crabtree 1940s' title='Claudia'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/the-damon-runyon-theatre' hx-swap='innerHTML show:top' - data-filter='the damon runyon theatre' + data-filter='the damon runyon theatre john brown william conrad gerald mohr anne whitfield frank lovejoy jeff chandler hans conried parley baer 1940s 1950s' title='The Damon Runyon Theatre'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/democracy-in-america' hx-swap='innerHTML show:top' - data-filter='democracy in america' + data-filter='democracy in america barry morse alan king 1960s' title='Democracy in America'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/down-our-way' hx-swap='innerHTML show:top' - data-filter='down our way' + data-filter='down our way 1930s' title='Down Our Way'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/dr-kildare' hx-swap='innerHTML show:top' - data-filter='dr. kildare' + data-filter='dr. kildare lew ayres lionel barrymore stacy harris isabel jewell jay novello george ellis paul frees raymond burr jack webb virginia gragg ted osborne 1940s 1950s' title='Dr. Kildare'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/encore-theater' hx-swap='innerHTML show:top' - data-filter='encore theater' + data-filter='encore theater lurene tuttle eric snowden gerald mohr ronald colman robert young lionel barrymore 1940s' title='Encore Theater'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/family-doctor' hx-swap='innerHTML show:top' - data-filter='family doctor' + data-filter='family doctor 1930s' title='Family Doctor'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/first-nighter' hx-swap='innerHTML show:top' - data-filter='first nighter' + data-filter='first nighter charles p hughes june meredith macdonald carey bret morrison marvin miller don briggs rye billsbury don ameche betty lou gerson les tremayne barbara luddy olan soule 1930s 1940s 1950s' title='First Nighter'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/the-grantland-rice-story' hx-swap='innerHTML show:top' - data-filter='the grantland rice story' + data-filter='the grantland rice story jimmy powers 1950s' title='The Grantland Rice Story'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/great-scenes-from-great-plays' hx-swap='innerHTML show:top' - data-filter='great scenes from great plays' + data-filter='great scenes from great plays walter h hampden basil rathbone beatrice straight jane cowl ann seymore boris karloff joan caulfield jane powell henry fonda gene tierney eddie albert 1940s' title='Great Scenes from Great Plays'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/hello-americans' hx-swap='innerHTML show:top' - data-filter='hello americans' + data-filter='hello americans orson welles carmen miranda hans conried gerald mohr laird cregar agnes moorehead ray collins 1940s' title='Hello Americans'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/incredible-but-true' hx-swap='innerHTML show:top' - data-filter='incredible, but true' + data-filter='incredible, but true ken nordine 1950s' title='Incredible, But True'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/love-story-magazine' hx-swap='innerHTML show:top' - data-filter='love story magazine' + data-filter='love story magazine 1930s' title='Love Story Magazine'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/lux-radio-theatre' hx-swap='innerHTML show:top' - data-filter='lux radio theatre' + data-filter='lux radio theatre miriam hopkins john boles marlene dietrich clark gable myrna loy william powell and many more 1930s 1940s 1950s' title='Lux Radio Theatre'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/mama-blooms-brood' hx-swap='innerHTML show:top' - data-filter='mama bloom's brood' + data-filter='mama bloom's brood jake becky yetta sarah harold sidney 1930s' title='Mama Bloom's Brood'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/the-marriage' hx-swap='innerHTML show:top' - data-filter='the marriage' + data-filter='the marriage hume cronyn jessica tandy denise alexander 1950s' title='The Marriage'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/matinee-theater' hx-swap='innerHTML show:top' - data-filter='matinee theater' + data-filter='matinee theater victor jory 1940s' title='Matinee Theater'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/mercury-theatre' hx-swap='innerHTML show:top' - data-filter='mercury theatre' + data-filter='mercury theatre orson welles william alland edgar barrier ray collins joseph cotten george coulouris arlene francis alice frost martin gabel agnes moorehead frank readick elliott reid everett sloane howard smith paul stewart karl swenson virginia welles richard wilson eustace wyatt 1930s' title='Mercury Theatre'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/the-mysterious-traveler' hx-swap='innerHTML show:top' - data-filter='the mysterious traveler' + data-filter='the mysterious traveler maurice tarplin jackson beck lon clark roger dekoven elspeth eric wendell holmes bill johnstone joseph julian jan miner santos ortega bryna raeburn frank readick luis van rooten ann shepherd lawson zerbe bill zuckert 1940s 1950s' title='The Mysterious Traveler'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/on-stage' hx-swap='innerHTML show:top' - data-filter='on stage' + data-filter='on stage elliot lewis cathy lewis 1950s' title='On Stage'> cover image @@ -488,7 +488,7 @@ hx-target='main' hx-push-url='/series/ports-of-call' hx-swap='innerHTML show:top' - data-filter='ports of call' + data-filter='ports of call 1930s' title='Ports of Call'> cover image @@ -508,7 +508,7 @@ hx-target='main' hx-push-url='/series/proudly-we-hail' hx-swap='innerHTML show:top' - data-filter='proudly we hail' + data-filter='proudly we hail turhan bey lee tracy howard mcnear jeff chandler joe desantis miriam wolfe mason adams 1940s 1950s' title='Proudly We Hail'> cover image @@ -528,7 +528,7 @@ hx-target='main' hx-push-url='/series/redbook-dramas' hx-swap='innerHTML show:top' - data-filter='redbook dramas' + data-filter='redbook dramas 1930s' title='Redbook Dramas'> cover image @@ -548,7 +548,7 @@ hx-target='main' hx-push-url='/series/romance' hx-swap='innerHTML show:top' - data-filter='romance' + data-filter='romance henry fonda humphrey bogart gregory peck shirley temple 1940s 1950s' title='Romance'> cover image @@ -568,7 +568,7 @@ hx-target='main' hx-push-url='/series/rotary-golden-theater' hx-swap='innerHTML show:top' - data-filter='rotary golden theater' + data-filter='rotary golden theater 1950s' title='Rotary Golden Theater'> cover image @@ -588,7 +588,7 @@ hx-target='main' hx-push-url='/series/screen-directors-playhouse' hx-swap='innerHTML show:top' - data-filter='screen directors' playhouse' + data-filter='screen directors' playhouse fred astaire lucille ball tallulah bankhead charles boyer claudette colbert ronald colman gary cooper joan crawford bette davis marlene dietrich kirk douglas irene dunne douglas fairbanks jr henry fonda cary grant william holden burt lancaster james mason ray milland gregory peck william powell edward g robinson norma shearer barbara stanwyck james stewart john wayne loretta young and more 1940s 1950s' title='Screen Directors' Playhouse'> cover image @@ -608,7 +608,7 @@ hx-target='main' hx-push-url='/series/sears-radio-theater' hx-swap='innerHTML show:top' - data-filter='sears radio theater' + data-filter='sears radio theater parley baer mary jane croft howard culver john dehner virginia gregg janet waldo vic perrin hans conried marvin miller elliot lewis jeff corey lesley woods robert rockwell lurene tuttle eve arden keith andes harriet nelson alan young tom bosley marion ross lloyd bochner rick jason frank campanella toni tennille arthur hill dan oherlihy jesse white frank nelson jim jordan henry morgan daws butler june foray joan mccall don diamond peggy webber 1970s 1980s' title='Sears Radio Theater'> cover image @@ -628,7 +628,7 @@ hx-target='main' hx-push-url='/series/the-shadow' hx-swap='innerHTML show:top' - data-filter='the shadow' + data-filter='the shadow orson welles frank readick 1930s 1940s' title='The Shadow'> cover image @@ -648,7 +648,7 @@ hx-target='main' hx-push-url='/series/soldiers-of-the-press' hx-swap='innerHTML show:top' - data-filter='soldiers of the press' + data-filter='soldiers of the press walter cronkite harrison salisbury ralph teasdale ann stringer lon clark jackson beck eleanor packard frank hewlett charles arnot 1940s' title='Soldiers of the Press'> cover image @@ -668,7 +668,7 @@ hx-target='main' hx-push-url='/series/stand-by-for-crime' hx-swap='innerHTML show:top' - data-filter='stand by for crime' + data-filter='stand by for crime glen langen adele jurgens 1950s' title='Stand By for Crime'> cover image @@ -688,7 +688,7 @@ hx-target='main' hx-push-url='/series/strange-as-it-seems' hx-swap='innerHTML show:top' - data-filter='strange as it seems' + data-filter='strange as it seems gayne whitman cyril armbrister felix mills 1930s 1940s' title='Strange as it Seems'> cover image @@ -708,7 +708,7 @@ hx-target='main' hx-push-url='/series/the-strange-dr-weird' hx-swap='innerHTML show:top' - data-filter='the strange dr. weird' + data-filter='the strange dr. weird maurice tarplin 1940s' title='The Strange Dr. Weird'> cover image @@ -728,7 +728,7 @@ hx-target='main' hx-push-url='/series/strange-wills' hx-swap='innerHTML show:top' - data-filter='strange wills' + data-filter='strange wills warren william howard culver carleton g young lurene tuttle william conrad peggy webber 1940s' title='Strange Wills'> cover image @@ -748,7 +748,7 @@ hx-target='main' hx-push-url='/series/suspense' hx-swap='innerHTML show:top' - data-filter='suspense' + data-filter='suspense lurene tuttle rosalind russell jimmy stewart gene kelly charles ruggles alice frost jack webb alfred hitchcock alan ladd dane clark cary grant susan hayward rita hayworth peter lorre vincent price charles laughton loretta young lillian gish olivia de havilland orson welles james stewart 1940s 1950s 1960s' title='Suspense'> cover image @@ -768,7 +768,7 @@ hx-target='main' hx-push-url='/series/the-tenth-man' hx-swap='innerHTML show:top' - data-filter='the tenth man' + data-filter='the tenth man jackson beck ralph bellamy 1940s' title='The Tenth Man'> cover image @@ -788,7 +788,7 @@ hx-target='main' hx-push-url='/series/theater-five' hx-swap='innerHTML show:top' - data-filter='theater five' + data-filter='theater five george o petrie brett morrison jackson beck robert dryden elliott reid court benson cliff carpenter bryna raeburn james earl jones alan alda ed begley romeo muller 1960s' title='Theater Five'> cover image @@ -808,7 +808,7 @@ hx-target='main' hx-push-url='/series/theatre-royal' hx-swap='innerHTML show:top' - data-filter='theatre royal' + data-filter='theatre royal sir lawrence olivier sir ralph richardson sir john gielgud robert morley harry andrews muriel forbes robert donat daphne maddox 1950s' title='Theatre Royal'> cover image @@ -828,7 +828,7 @@ hx-target='main' hx-push-url='/series/we-came-this-way' hx-swap='innerHTML show:top' - data-filter='we came this way' + data-filter='we came this way dana andrews 1940s' title='We Came This Way'> cover image @@ -848,7 +848,7 @@ hx-target='main' hx-push-url='/series/the-whistler' hx-swap='innerHTML show:top' - data-filter='the whistler' + data-filter='the whistler bill forman gale gordon joseph kearns cathy lewis elliott lewis gerald mohr lurene tuttle jack webb marvin miller everett clarke bill johnstone 1940s 1950s' title='The Whistler'> cover image @@ -868,7 +868,7 @@ hx-target='main' hx-push-url='/series/words-at-war' hx-swap='innerHTML show:top' - data-filter='words at war' + data-filter='words at war 1940s' title='Words at War'> cover image @@ -888,7 +888,7 @@ hx-target='main' hx-push-url='/series/you-are-there' hx-swap='innerHTML show:top' - data-filter='you are there' + data-filter='you are there richard c hottelet john daly don hollenbeck canada lee martin gabel john cassavetes james dean vivi janiss paul newman jeanette nolan 1940s 1950s' title='You Are There'> cover image diff --git a/site/partial/genre/game-show.html b/site/partial/genre/game-show.html index f7d9ba5..c1f389a 100644 --- a/site/partial/genre/game-show.html +++ b/site/partial/genre/game-show.html @@ -1,6 +1,6 @@

Game-Show Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/mind-your-manners' hx-swap='innerHTML show:top' - data-filter='mind your manners' + data-filter='mind your manners 1940s' title='Mind Your Manners'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/people-are-funny' hx-swap='innerHTML show:top' - data-filter='people are funny' + data-filter='people are funny art baker art linkletter flip wilson 1940s 1950s 1960s' title='People are Funny'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/quiz-kids' hx-swap='innerHTML show:top' - data-filter='quiz kids' + data-filter='quiz kids joe kelly clifton fadiman durward kirby milton berle 1940s 1950s' title='Quiz Kids'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/truth-or-consequences' hx-swap='innerHTML show:top' - data-filter='truth or consequences' + data-filter='truth or consequences ralph edwards jack bailey bob barker steve dunne bob hilton larry anderson 1940s 1950s 1960s' title='Truth or Consequences'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/vox-pop' hx-swap='innerHTML show:top' - data-filter='vox pop' + data-filter='vox pop parks johnson wally butterworth jerry belcher neil omalley warren hull 1930s 1940s' title='Vox Pop'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/you-bet-your-life' hx-swap='innerHTML show:top' - data-filter='you bet your life' + data-filter='you bet your life groucho marx buddy hackett bill cosby jay leno 1940s 1950s 1960s' title='You Bet Your Life'> cover image diff --git a/site/partial/genre/horror.html b/site/partial/genre/horror.html index fe9fb57..b815a9b 100644 --- a/site/partial/genre/horror.html +++ b/site/partial/genre/horror.html @@ -1,6 +1,6 @@

Horror Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/dark-fantasy' hx-swap='innerHTML show:top' - data-filter='dark fantasy' + data-filter='dark fantasy 1940s' title='Dark Fantasy'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/the-devil-and-mr-o' hx-swap='innerHTML show:top' - data-filter='the devil and mr. o' + data-filter='the devil and mr. o 1940s' title='The Devil and Mr. O'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/frankenstein' hx-swap='innerHTML show:top' - data-filter='frankenstein' + data-filter='frankenstein boris karloff bela lugosi david carradine lon chaney jr glenn strange 1930s' title='Frankenstein'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/the-haunting-hour' hx-swap='innerHTML show:top' - data-filter='the haunting hour' + data-filter='the haunting hour 1940s' title='The Haunting Hour'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/the-hermits-cave' hx-swap='innerHTML show:top' - data-filter='the hermit's cave' + data-filter='the hermit's cave john kent mel johnson john dehner william conrad 1930s 1940s' title='The Hermit's Cave'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/i-love-a-mystery' hx-swap='innerHTML show:top' - data-filter='i love a mystery' + data-filter='i love a mystery michael raffetto russell thorson jay novello jim bannon john mcintire barton yarborough jim boles walter paterson tony randall gloria blondell 1930s 1940s 1950s' title='I Love a Mystery'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/inner-sanctum-mysteries' hx-swap='innerHTML show:top' - data-filter='inner sanctum mysteries' + data-filter='inner sanctum mysteries raymond edward johnson paul mcgrath mary bennett boris karloff mary astor helen hayes peter lorre paul lukas claude rains frank sinatra orson welles santos ortega mercedes mccambridge berry kroeger lawson zerbe arnold moss leon janney mason adams richard widmark everett sloane burgess meredith agnes moorehead ken lynch anne seymour 1940s 1950s' title='Inner Sanctum Mysteries'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/lights-out' hx-swap='innerHTML show:top' - data-filter='lights out' + data-filter='lights out 1930s 1940s' title='Lights Out'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/murder-at-midnight' hx-swap='innerHTML show:top' - data-filter='murder at midnight' + data-filter='murder at midnight 1940s 1950s' title='Murder at Midnight'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/the-mysterious-traveler' hx-swap='innerHTML show:top' - data-filter='the mysterious traveler' + data-filter='the mysterious traveler maurice tarplin jackson beck lon clark roger dekoven elspeth eric wendell holmes bill johnstone joseph julian jan miner santos ortega bryna raeburn frank readick luis van rooten ann shepherd lawson zerbe bill zuckert 1940s 1950s' title='The Mysterious Traveler'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/mystery-in-the-air' hx-swap='innerHTML show:top' - data-filter='mystery in the air' + data-filter='mystery in the air peter lorre harry morgan 1940s' title='Mystery in the Air'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/obsession' hx-swap='innerHTML show:top' - data-filter='obsession' + data-filter='obsession vincent price ruth warrick william gargan miriam hopkins barton yarborough 1950s' title='Obsession'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/quiet-please' hx-swap='innerHTML show:top' - data-filter='quiet, please' + data-filter='quiet, please ernest chappell 1940s' title='Quiet, Please'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/the-sealed-book' hx-swap='innerHTML show:top' - data-filter='the sealed book' + data-filter='the sealed book 1940s' title='The Sealed Book'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/the-strange-dr-weird' hx-swap='innerHTML show:top' - data-filter='the strange dr. weird' + data-filter='the strange dr. weird maurice tarplin 1940s' title='The Strange Dr. Weird'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/suspense' hx-swap='innerHTML show:top' - data-filter='suspense' + data-filter='suspense lurene tuttle rosalind russell jimmy stewart gene kelly charles ruggles alice frost jack webb alfred hitchcock alan ladd dane clark cary grant susan hayward rita hayworth peter lorre vincent price charles laughton loretta young lillian gish olivia de havilland orson welles james stewart 1940s 1950s 1960s' title='Suspense'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/the-unexpected' hx-swap='innerHTML show:top' - data-filter='the unexpected' + data-filter='the unexpected barry sullivan marsha hunt lurene tuttle virginia gregg 1940s' title='The Unexpected'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/the-weird-circle' hx-swap='innerHTML show:top' - data-filter='the weird circle' + data-filter='the weird circle lawson zerbe gladys thornton walter vaughn arnold moss 1940s' title='The Weird Circle'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/the-whistler' hx-swap='innerHTML show:top' - data-filter='the whistler' + data-filter='the whistler bill forman gale gordon joseph kearns cathy lewis elliott lewis gerald mohr lurene tuttle jack webb marvin miller everett clarke bill johnstone 1940s 1950s' title='The Whistler'> cover image diff --git a/site/partial/genre/music.html b/site/partial/genre/music.html index e0278c9..f2a3ebc 100644 --- a/site/partial/genre/music.html +++ b/site/partial/genre/music.html @@ -1,6 +1,6 @@

Music Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/alka-seltzer-time' hx-swap='innerHTML show:top' - data-filter='alka seltzer time' + data-filter='alka seltzer time curt massey martha tilton 1940s 1950s' title='Alka Seltzer Time'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/all-star-western-theatre' hx-swap='innerHTML show:top' - data-filter='all star western theatre' + data-filter='all star western theatre foy willing kenny driver al sloey johnny paul johnny mack brown 1940s' title='All Star Western Theatre'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/the-bing-crosby-rosemary-clooney-show' hx-swap='innerHTML show:top' - data-filter='the bing crosby - rosemary clooney show' + data-filter='the bing crosby - rosemary clooney show bing crosby rosemary clooney buddy cole ken carpenter 1960s' title='The Bing Crosby - Rosemary Clooney Show'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/command-performance' hx-swap='innerHTML show:top' - data-filter='command performance' + data-filter='command performance jane russell bob hope major meredith willson bing crosby jack benny frank sinatra fred allen ginger rogers judy garland lena horne the andrews sisters orson welles ann miller carole landis lucille ball errol flynn 1940s' title='Command Performance'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/crazy-hillbillies' hx-swap='innerHTML show:top' - data-filter='crazy hillbillies' + data-filter='crazy hillbillies 1930s' title='Crazy Hillbillies'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/crazy-water-crystal-program' hx-swap='innerHTML show:top' - data-filter='crazy water crystal program' + data-filter='crazy water crystal program 1930s 1940s' title='Crazy Water Crystal Program'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/delmore-brothers' hx-swap='innerHTML show:top' - data-filter='delmore brothers' + data-filter='delmore brothers alton delmore rabon delmore 1930s 1940s 1950s' title='Delmore Brothers'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/grand-ole-opry' hx-swap='innerHTML show:top' - data-filter='grand ole opry' + data-filter='grand ole opry 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 2020s' title='Grand Ole Opry'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/the-health-and-happiness-show' hx-swap='innerHTML show:top' - data-filter='the health and happiness show' + data-filter='the health and happiness show hank williams audrey williams 1940s' title='The Health and Happiness Show'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/the-hillbilly-boys' hx-swap='innerHTML show:top' - data-filter='the hillbilly boys' + data-filter='the hillbilly boys w lee odaniel bob wills herman arnspiger milton brown leon huff kitty williamson 1930s' title='The Hillbilly Boys'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/light-crust-doughboys' hx-swap='innerHTML show:top' - data-filter='light crust doughboys' + data-filter='light crust doughboys bob wills milton brown tommy duncan cecil brower john parker kenneth pitts 1930s 1940s 1950s' title='Light Crust Doughboys'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/melody-ranch' hx-swap='innerHTML show:top' - data-filter='melody ranch' + data-filter='melody ranch gene autry wendell niles tom hanlon lou crosby charles lyon pat buttram 1940s 1950s' title='Melody Ranch'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/mothers-best-flour' hx-swap='innerHTML show:top' - data-filter='mother's best flour' + data-filter='mother's best flour hank williams louie buck 1950s' title='Mother's Best Flour'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/old-fashioned-revival-hour' hx-swap='innerHTML show:top' - data-filter='old fashioned revival hour' + data-filter='old fashioned revival hour pastor charles e fuller 1940s' title='Old Fashioned Revival Hour'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/pinto-pete-and-his-ranch-boys' hx-swap='innerHTML show:top' - data-filter='pinto pete and his ranch boys' + data-filter='pinto pete and his ranch boys jack ross joe bradley ken carson 1930s 1940s 1950s' title='Pinto Pete and his Ranch Boys'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/pinto-pete-in-arizona' hx-swap='innerHTML show:top' - data-filter='pinto pete in arizona' + data-filter='pinto pete in arizona jack ross joe bradley ken carson 1930s 1940s 1950s' title='Pinto Pete in Arizona'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/red-horse-ranch' hx-swap='innerHTML show:top' - data-filter='red horse ranch' + data-filter='red horse ranch foreman alabam tenderfoot idaho arizona cookie and tex 1930s' title='Red Horse Ranch'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/the-roy-rogers-show' hx-swap='innerHTML show:top' - data-filter='the roy rogers show' + data-filter='the roy rogers show roy rogers dale evans gabby hayes pat brady forrest lewis 1940s 1950s' title='The Roy Rogers Show'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/shell-chateau' hx-swap='innerHTML show:top' - data-filter='shell chateau' + data-filter='shell chateau al jolson wallace beery walter winchell smith ballew joe cook louis armstrong john barrymore lionel barrymore ben blue bette davis joan davis florence gill george jessel boris karloff dixie lee joe e lewis john mccormack maxie rosenbloom joe penner eleanor powell ginger rogers babe ruth benay venuta fats waller johnny weissmuller june marlowe midge williams lee wiley 1930s' title='Shell Chateau'> cover image diff --git a/site/partial/genre/mystery.html b/site/partial/genre/mystery.html index c7bfd8a..3d33e14 100644 --- a/site/partial/genre/mystery.html +++ b/site/partial/genre/mystery.html @@ -1,6 +1,6 @@

Mystery Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-ellery-queen' hx-swap='innerHTML show:top' - data-filter='the adventures of ellery queen' + data-filter='the adventures of ellery queen hugh marlowe carleton young sydney smith lawrence dobkin howard culver ken roberts bert parks ernest chappell don hancock paul masterson 1930s 1940s' title='The Adventures of Ellery Queen'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/air-mail-mystery' hx-swap='innerHTML show:top' - data-filter='air mail mystery' + data-filter='air mail mystery 1930s' title='Air Mail Mystery'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/arch-obolers-plays' hx-swap='innerHTML show:top' - data-filter='arch oboler's plays' + data-filter='arch oboler's plays ingrid bergman gloria blondell eddie cantor james cagney ronald colman joan crawford greer garson edmund gwenn van heflin katharine hepburn elsa lanchester peter lorre frank lovejoy raymond massey burgess meredith paul muni alla nazimova edmond obrien geraldine page hester sondergaard franchot tone george zucco 1930s 1940s' title='Arch Oboler's Plays'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/black-museum' hx-swap='innerHTML show:top' - data-filter='the black museum' + data-filter='the black museum orson welles robert rietti keith pyott joe mccormick harp mcguire michael york 1950s' title='The Black Museum'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/cbs-radio-mystery-theater' hx-swap='innerHTML show:top' - data-filter='cbs radio mystery theater' + data-filter='cbs radio mystery theater e g marshall tammy grimes 1970s 1980s' title='CBS Radio Mystery Theater'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/the-chase' hx-swap='innerHTML show:top' - data-filter='the chase' + data-filter='the chase unknown 1950s' title='The Chase'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/the-clock' hx-swap='innerHTML show:top' - data-filter='the clock' + data-filter='the clock clark andrews cathy lewis elliott lewis jeanette nolan hans conried william conrad 1940s' title='The Clock'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/the-crime-club' hx-swap='innerHTML show:top' - data-filter='the crime club' + data-filter='the crime club barry thomson raymond edward johnson 1940s' title='The Crime Club'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/ellery-queens-minute-mysteries' hx-swap='innerHTML show:top' - data-filter='ellery queen's minute mysteries' + data-filter='ellery queen's minute mysteries 1930s 1940s' title='Ellery Queen's Minute Mysteries'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/five-minute-mysteries' hx-swap='innerHTML show:top' - data-filter='five minute mysteries' + data-filter='five minute mysteries 1940s' title='Five Minute Mysteries'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/the-haunting-hour' hx-swap='innerHTML show:top' - data-filter='the haunting hour' + data-filter='the haunting hour 1940s' title='The Haunting Hour'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/i-love-a-mystery' hx-swap='innerHTML show:top' - data-filter='i love a mystery' + data-filter='i love a mystery michael raffetto russell thorson jay novello jim bannon john mcintire barton yarborough jim boles walter paterson tony randall gloria blondell 1930s 1940s 1950s' title='I Love a Mystery'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/inner-sanctum-mysteries' hx-swap='innerHTML show:top' - data-filter='inner sanctum mysteries' + data-filter='inner sanctum mysteries raymond edward johnson paul mcgrath mary bennett boris karloff mary astor helen hayes peter lorre paul lukas claude rains frank sinatra orson welles santos ortega mercedes mccambridge berry kroeger lawson zerbe arnold moss leon janney mason adams richard widmark everett sloane burgess meredith agnes moorehead ken lynch anne seymour 1940s 1950s' title='Inner Sanctum Mysteries'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/the-key' hx-swap='innerHTML show:top' - data-filter='the key' + data-filter='the key 1950s' title='The Key'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/the-man-called-x' hx-swap='innerHTML show:top' - data-filter='the man called x' + data-filter='the man called x herbert marshall leon belasco 1940s 1950s' title='The Man Called X'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/molle-mystery-theatre' hx-swap='innerHTML show:top' - data-filter='molle mystery theatre' + data-filter='molle mystery theatre joseph julian anne seymour raymond edward johnson peter lorre bernard lenrow roc rogers richard widmark budd collyer martin gable mandel kramer elspeth eric frank lovejoy alfred shirley robert carroll james westerfield 1940s 1950s' title='Molle Mystery Theatre'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/murder-at-midnight' hx-swap='innerHTML show:top' - data-filter='murder at midnight' + data-filter='murder at midnight 1940s 1950s' title='Murder at Midnight'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/murder-by-experts' hx-swap='innerHTML show:top' - data-filter='murder by experts' + data-filter='murder by experts lawson zerbe ann shepherd santos ortega ralph bell william zuckert 1940s 1950s' title='Murder by Experts'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/the-mysterious-traveler' hx-swap='innerHTML show:top' - data-filter='the mysterious traveler' + data-filter='the mysterious traveler maurice tarplin jackson beck lon clark roger dekoven elspeth eric wendell holmes bill johnstone joseph julian jan miner santos ortega bryna raeburn frank readick luis van rooten ann shepherd lawson zerbe bill zuckert 1940s 1950s' title='The Mysterious Traveler'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/mystery-house' hx-swap='innerHTML show:top' - data-filter='mystery house' + data-filter='mystery house 1920s 1930s 1940s 1950s' title='Mystery House'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/mystery-in-the-air' hx-swap='innerHTML show:top' - data-filter='mystery in the air' + data-filter='mystery in the air peter lorre harry morgan 1940s' title='Mystery in the Air'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/secret-agent-k-7-returns' hx-swap='innerHTML show:top' - data-filter='secret agent k-7 returns' + data-filter='secret agent k-7 returns unknown 1930s' title='Secret Agent K-7 Returns'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/the-shadow' hx-swap='innerHTML show:top' - data-filter='the shadow' + data-filter='the shadow orson welles frank readick 1930s 1940s' title='The Shadow'> cover image @@ -488,7 +488,7 @@ hx-target='main' hx-push-url='/series/the-strange-dr-weird' hx-swap='innerHTML show:top' - data-filter='the strange dr. weird' + data-filter='the strange dr. weird maurice tarplin 1940s' title='The Strange Dr. Weird'> cover image @@ -508,7 +508,7 @@ hx-target='main' hx-push-url='/series/suspense' hx-swap='innerHTML show:top' - data-filter='suspense' + data-filter='suspense lurene tuttle rosalind russell jimmy stewart gene kelly charles ruggles alice frost jack webb alfred hitchcock alan ladd dane clark cary grant susan hayward rita hayworth peter lorre vincent price charles laughton loretta young lillian gish olivia de havilland orson welles james stewart 1940s 1950s 1960s' title='Suspense'> cover image @@ -528,7 +528,7 @@ hx-target='main' hx-push-url='/series/the-whistler' hx-swap='innerHTML show:top' - data-filter='the whistler' + data-filter='the whistler bill forman gale gordon joseph kearns cathy lewis elliott lewis gerald mohr lurene tuttle jack webb marvin miller everett clarke bill johnstone 1940s 1950s' title='The Whistler'> cover image diff --git a/site/partial/genre/sci-fi.html b/site/partial/genre/sci-fi.html index 4238410..663e9e3 100644 --- a/site/partial/genre/sci-fi.html +++ b/site/partial/genre/sci-fi.html @@ -1,6 +1,6 @@

Sci-Fi Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/alien-worlds' hx-swap='innerHTML show:top' - data-filter='alien worlds' + data-filter='alien worlds linda gary roger dressler bruce philip miller chuck olsen corey burton 1970s 1980s' title='Alien Worlds'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/buck-rogers' hx-swap='innerHTML show:top' - data-filter='buck rogers' + data-filter='buck rogers matt crowley curtis arnall carl frank john larkin adele ronson edgar stehli jack roseleigh joe granby ronald liss elaine melchior william bill shelley dan ocko arthur vinton 1930s 1940s' title='Buck Rogers'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/dimension-x' hx-swap='innerHTML show:top' - data-filter='dimension x' + data-filter='dimension x joe di santis wendell holmes santos ortega joseph julian jan miner roger de koven john gibson ralph bell john larkin les damon mason adams 1950s' title='Dimension X'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/exploring-tomorrow' hx-swap='innerHTML show:top' - data-filter='exploring tomorrow' + data-filter='exploring tomorrow mandel kramer bryna raeburn lawson zerbe lon clark mason adams connie lembcke larry haines don douglas bret morrison charlotte sheffield 1950s' title='Exploring Tomorrow'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/flash-gordon' hx-swap='innerHTML show:top' - data-filter='flash gordon' + data-filter='flash gordon gale gordon 1930s' title='Flash Gordon'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/journey-into-space' hx-swap='innerHTML show:top' - data-filter='journey into space' + data-filter='journey into space andrew fauldsguy kingsley poynterbruce beebydon sharpdavid williamsdavid kossoffalfie bassdavid jacobs 1950s' title='Journey Into Space'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/magic-island' hx-swap='innerHTML show:top' - data-filter='magic island' + data-filter='magic island sally creighton rosa barcelo tommy carr will h reynolds 1930s 1940s' title='Magic Island'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/planet-man' hx-swap='innerHTML show:top' - data-filter='planet man' + data-filter='planet man 1950s' title='Planet Man'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/sf-68' hx-swap='innerHTML show:top' - data-filter='sf-68' + data-filter='sf-68 michael mccabe 1960s' title='SF-68'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/space-patrol' hx-swap='innerHTML show:top' - data-filter='space patrol' + data-filter='space patrol ed kemmer lyn osborn virginia hewitt ken mayer norman jolley nina bara bela kovacs dick tufeld dick wesson 1950s' title='Space Patrol'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/superman' hx-swap='innerHTML show:top' - data-filter='superman' + data-filter='superman bud collyer joan alexander julian noa jackie kelk 1940s 1950s' title='Superman'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/x-minus-one' hx-swap='innerHTML show:top' - data-filter='x minus one' + data-filter='x minus one 1950s' title='X Minus One'> cover image diff --git a/site/partial/genre/western.html b/site/partial/genre/western.html index fb27806..ba8b148 100644 --- a/site/partial/genre/western.html +++ b/site/partial/genre/western.html @@ -1,6 +1,6 @@

Western Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/all-star-western-theatre' hx-swap='innerHTML show:top' - data-filter='all star western theatre' + data-filter='all star western theatre foy willing kenny driver al sloey johnny paul johnny mack brown 1940s' title='All Star Western Theatre'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/fort-laramie' hx-swap='innerHTML show:top' - data-filter='fort laramie' + data-filter='fort laramie raymond burr vic perrin jack moyles 1950s' title='Fort Laramie'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/frontier-fighters' hx-swap='innerHTML show:top' - data-filter='frontier fighters' + data-filter='frontier fighters 1930s' title='Frontier Fighters'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/frontier-town' hx-swap='innerHTML show:top' - data-filter='frontier town' + data-filter='frontier town jeff chandler reed hadley wade crosby 1940s 1950s' title='Frontier Town'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/gunsmoke' hx-swap='innerHTML show:top' - data-filter='gunsmoke' + data-filter='gunsmoke william conrad parley baer howard mcnear georgia ellis 1950s 1960s' title='Gunsmoke'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/have-gun-will-travel' hx-swap='innerHTML show:top' - data-filter='have gun - will travel' + data-filter='have gun - will travel richard boone kam tong john dehner 1950s 1960s' title='Have Gun - Will Travel'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/hopalong-cassidy' hx-swap='innerHTML show:top' - data-filter='hopalong cassidy' + data-filter='hopalong cassidy william boyd andy clyde 1940s 1950s' title='Hopalong Cassidy'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/lightning-jim' hx-swap='innerHTML show:top' - data-filter='lightning jim' + data-filter='lightning jim 1940s 1950s' title='Lightning Jim'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/the-lone-ranger' hx-swap='innerHTML show:top' - data-filter='the lone ranger' + data-filter='the lone ranger george seaton earle graser brace beemer james jewell fred foy john todd roland parker jay michael bill saunders paul hughes jane fae rube and liz weiss john hodiak bob martin james lipton dick beals 1930s 1940s 1950s' title='The Lone Ranger'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/luke-slaughter-of-tombstone' hx-swap='innerHTML show:top' - data-filter='luke slaughter of tombstone' + data-filter='luke slaughter of tombstone sam buffington junius matthews 1950s' title='Luke Slaughter of Tombstone'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/melody-ranch' hx-swap='innerHTML show:top' - data-filter='melody ranch' + data-filter='melody ranch gene autry wendell niles tom hanlon lou crosby charles lyon pat buttram 1940s 1950s' title='Melody Ranch'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/pinto-pete-and-his-ranch-boys' hx-swap='innerHTML show:top' - data-filter='pinto pete and his ranch boys' + data-filter='pinto pete and his ranch boys jack ross joe bradley ken carson 1930s 1940s 1950s' title='Pinto Pete and his Ranch Boys'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/pinto-pete-in-arizona' hx-swap='innerHTML show:top' - data-filter='pinto pete in arizona' + data-filter='pinto pete in arizona jack ross joe bradley ken carson 1930s 1940s 1950s' title='Pinto Pete in Arizona'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/red-horse-ranch' hx-swap='innerHTML show:top' - data-filter='red horse ranch' + data-filter='red horse ranch foreman alabam tenderfoot idaho arizona cookie and tex 1930s' title='Red Horse Ranch'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/romance-of-the-ranchos' hx-swap='innerHTML show:top' - data-filter='romance of the ranchos' + data-filter='romance of the ranchos jerry farber ann whitfield nestor palva lou krugman marian wilkins gail bonney herb butterfield 1940s' title='Romance of the Ranchos'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/the-roy-rogers-show' hx-swap='innerHTML show:top' - data-filter='the roy rogers show' + data-filter='the roy rogers show roy rogers dale evans gabby hayes pat brady forrest lewis 1940s 1950s' title='The Roy Rogers Show'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/the-six-shooter' hx-swap='innerHTML show:top' - data-filter='the six shooter' + data-filter='the six shooter james stewart parley baer virginia gregg harry bartell howard mcnear jeanette nolan dan oherlihy alan reed marvin miller william conrad 1950s' title='The Six Shooter'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/tales-of-the-diamond-k' hx-swap='innerHTML show:top' - data-filter='tales of the diamond k' + data-filter='tales of the diamond k ken maynard 1950s' title='Tales of the Diamond K'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/tales-of-the-texas-rangers' hx-swap='innerHTML show:top' - data-filter='tales of the texas rangers' + data-filter='tales of the texas rangers joel mccrea willard parker harry lauter 1950s' title='Tales of the Texas Rangers'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/wild-bill-hickok' hx-swap='innerHTML show:top' - data-filter='wild bill hickok' + data-filter='wild bill hickok guy madison andy devine 1950s' title='Wild Bill Hickok'> cover image diff --git a/site/partial/series.html b/site/partial/series.html index 5d83997..7fc6f8d 100644 --- a/site/partial/series.html +++ b/site/partial/series.html @@ -1,6 +1,6 @@

All Series

- +
cover image @@ -28,7 +28,7 @@ hx-target='main' hx-push-url='/series/21st-precinct' hx-swap='innerHTML show:top' - data-filter='21st precinct' + data-filter='21st precinct everett sloane james gregory les damon ken lynch harold stone santos ortega jack orissa art hanna bob hill hugh holder 1950s' title='21st Precinct'> cover image @@ -48,7 +48,7 @@ hx-target='main' hx-push-url='/series/33-half-moon-street' hx-swap='innerHTML show:top' - data-filter='33 half moon street' + data-filter='33 half moon street michael todd 1960s' title='33 Half Moon Street'> cover image @@ -68,7 +68,7 @@ hx-target='main' hx-push-url='/series/abbott-and-costello' hx-swap='innerHTML show:top' - data-filter='abbott and costello' + data-filter='abbott and costello bud abbott lou costello 1940s' title='Abbott and Costello'> cover image @@ -88,7 +88,7 @@ hx-target='main' hx-push-url='/series/academy-award-theater' hx-swap='innerHTML show:top' - data-filter='academy award theater' + data-filter='academy award theater bette davis anne revere fay bainter jean hersholt henry fonda humphrey bogart cary grant gregory peck ronald colman fay bainter paul lukas victor mclaglen paul muni ginger rogers john lund joan fontaine margaret obrien jeff chandler 1940s' title='Academy Award Theater'> cover image @@ -108,7 +108,7 @@ hx-target='main' hx-push-url='/series/adventure-ahead' hx-swap='innerHTML show:top' - data-filter='adventure ahead' + data-filter='adventure ahead 1940s' title='Adventure Ahead'> cover image @@ -128,7 +128,7 @@ hx-target='main' hx-push-url='/series/adventures-by-morse' hx-swap='innerHTML show:top' - data-filter='adventures by morse' + data-filter='adventures by morse elliott lewis david ellis russell thorson barton yarborough jack edwards tony randall 1940s' title='Adventures by Morse'> cover image @@ -148,7 +148,7 @@ hx-target='main' hx-push-url='/series/adventures-of-champion' hx-swap='innerHTML show:top' - data-filter='adventures of champion' + data-filter='adventures of champion 1940s 1950s' title='Adventures of Champion'> cover image @@ -168,7 +168,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-ellery-queen' hx-swap='innerHTML show:top' - data-filter='the adventures of ellery queen' + data-filter='the adventures of ellery queen hugh marlowe carleton young sydney smith lawrence dobkin howard culver ken roberts bert parks ernest chappell don hancock paul masterson 1930s 1940s' title='The Adventures of Ellery Queen'> cover image @@ -188,7 +188,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-frank-race' hx-swap='innerHTML show:top' - data-filter='the adventures of frank race' + data-filter='the adventures of frank race tom collins paul dubov tony barrett jack kruschen wilms herbert lillian buyeff frank lovejoy harry lang 1940s 1950s' title='The Adventures of Frank Race'> cover image @@ -208,7 +208,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-marco-polo' hx-swap='innerHTML show:top' - data-filter='the adventures of marco polo' + data-filter='the adventures of marco polo gary cooper sigrid gurie basil rathbone ernest truex binnie barnes alan hale hb warner robert greig ferdinand gottschalk henry kolker lotus liu stanley fields harold huber lana turner harry cording jason robards sr charles stevens 1930s' title='The Adventures of Marco Polo'> cover image @@ -228,7 +228,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-ozzie-and-harriet' hx-swap='innerHTML show:top' - data-filter='the adventures of ozzie and harriet' + data-filter='the adventures of ozzie and harriet ozzie nelson harriet nelson david nelson ricky nelson don defore parley baer lyle talbot mary jane croft connie harper skip young gordon jones frank cady elroy williams lloyd corrigan joseph kearns james stacy jack wagner joe flynn kent mccord jimmy hawkins 1940s 1950s' title='The Adventures of Ozzie and Harriet'> cover image @@ -248,7 +248,7 @@ hx-target='main' hx-push-url='/series/adventures-of-philip-marlowe' hx-swap='innerHTML show:top' - data-filter='adventures of philip marlowe' + data-filter='adventures of philip marlowe van heflin gerald mohr william conrad 1940s 1950s' title='Adventures of Philip Marlowe'> cover image @@ -268,7 +268,7 @@ hx-target='main' hx-push-url='/series/the-adventures-of-sam-spade' hx-swap='innerHTML show:top' - data-filter='the adventures of sam spade' + data-filter='the adventures of sam spade howard duff steve dunne lurene tuttle john mcintire william conrad 1940s 1950s' title='The Adventures of Sam Spade'> cover image @@ -288,7 +288,7 @@ hx-target='main' hx-push-url='/series/afloat-with-henry-morgan' hx-swap='innerHTML show:top' - data-filter='afloat with henry morgan' + data-filter='afloat with henry morgan george edwards maurice francis nell sterling 1930s' title='Afloat with Henry Morgan'> cover image @@ -308,7 +308,7 @@ hx-target='main' hx-push-url='/series/air-mail-mystery' hx-swap='innerHTML show:top' - data-filter='air mail mystery' + data-filter='air mail mystery 1930s' title='Air Mail Mystery'> cover image @@ -328,7 +328,7 @@ hx-target='main' hx-push-url='/series/aladdin-lamp' hx-swap='innerHTML show:top' - data-filter='aladdin lamp' + data-filter='aladdin lamp smilin ed mcconnell irma allen del owen 1940s' title='Aladdin Lamp'> cover image @@ -348,7 +348,7 @@ hx-target='main' hx-push-url='/series/the-aldrich-family' hx-swap='innerHTML show:top' - data-filter='the aldrich family' + data-filter='the aldrich family eddie bracken betty field butterfly mcqueen ezra stone jackie kelk dickie jones raymond ives bobby ellis agnes moorehead 1930s 1940s 1950s' title='The Aldrich Family'> cover image @@ -368,7 +368,7 @@ hx-target='main' hx-push-url='/series/alien-worlds' hx-swap='innerHTML show:top' - data-filter='alien worlds' + data-filter='alien worlds linda gary roger dressler bruce philip miller chuck olsen corey burton 1970s 1980s' title='Alien Worlds'> cover image @@ -388,7 +388,7 @@ hx-target='main' hx-push-url='/series/alka-seltzer-time' hx-swap='innerHTML show:top' - data-filter='alka seltzer time' + data-filter='alka seltzer time curt massey martha tilton 1940s 1950s' title='Alka Seltzer Time'> cover image @@ -408,7 +408,7 @@ hx-target='main' hx-push-url='/series/all-star-western-theatre' hx-swap='innerHTML show:top' - data-filter='all star western theatre' + data-filter='all star western theatre foy willing kenny driver al sloey johnny paul johnny mack brown 1940s' title='All Star Western Theatre'> cover image @@ -428,7 +428,7 @@ hx-target='main' hx-push-url='/series/amos-n-andy' hx-swap='innerHTML show:top' - data-filter='amos 'n' andy' + data-filter='amos 'n' andy freeman gosden charles correll 1920s 1930s 1940s 1950s 1960s' title='Amos 'n' Andy'> cover image @@ -448,7 +448,7 @@ hx-target='main' hx-push-url='/series/arch-obolers-plays' hx-swap='innerHTML show:top' - data-filter='arch oboler's plays' + data-filter='arch oboler's plays ingrid bergman gloria blondell eddie cantor james cagney ronald colman joan crawford greer garson edmund gwenn van heflin katharine hepburn elsa lanchester peter lorre frank lovejoy raymond massey burgess meredith paul muni alla nazimova edmond obrien geraldine page hester sondergaard franchot tone george zucco 1930s 1940s' title='Arch Oboler's Plays'> cover image @@ -468,7 +468,7 @@ hx-target='main' hx-push-url='/series/archie-andrews' hx-swap='innerHTML show:top' - data-filter='archie andrews' + data-filter='archie andrews 1940s 1950s' title='Archie Andrews'> cover image @@ -488,7 +488,7 @@ hx-target='main' hx-push-url='/series/the-baby-snooks-show' hx-swap='innerHTML show:top' - data-filter='the baby snooks show' + data-filter='the baby snooks show fanny brice hanley stafford lalive brownell leone ledoux danny thomas ben alexander elvia allman sara berner charlie cantor ken christy earl lee frank nelson lillian randolph alan reed irene tedrow lois corbet arlene harris 1940s 1950s' title='The Baby Snooks Show'> cover image @@ -508,7 +508,7 @@ hx-target='main' hx-push-url='/series/barrie-craig-confidential-investigator' hx-swap='innerHTML show:top' - data-filter='barrie craig, confidential investigator' + data-filter='barrie craig, confidential investigator william gargan ralph bell elspeth eric parker fennelly santos ortega arnold moss parley baer virginia gregg betty lou gerson 1950s' title='Barrie Craig, Confidential Investigator'> cover image @@ -528,7 +528,7 @@ hx-target='main' hx-push-url='/series/behind-the-mike' hx-swap='innerHTML show:top' - data-filter='behind the mike' + data-filter='behind the mike graham mcnamee 1940s' title='Behind the Mike'> cover image @@ -548,7 +548,7 @@ hx-target='main' hx-push-url='/series/beulah' hx-swap='innerHTML show:top' - data-filter='beulah' + data-filter='beulah marlin hurt hattie mcdaniel lillian randolph amanda randolph bob corley ethel waters louise beavers 1940s 1950s' title='Beulah'> cover image @@ -568,7 +568,7 @@ hx-target='main' hx-push-url='/series/the-bickersons' hx-swap='innerHTML show:top' - data-filter='the bickersons' + data-filter='the bickersons don ameche frances langford lew parker 1940s 1950s' title='The Bickersons'> cover image @@ -588,7 +588,7 @@ hx-target='main' hx-push-url='/series/the-big-show' hx-swap='innerHTML show:top' - data-filter='the big show' + data-filter='the big show tallulah bankhead ethel merman danny thomas fanny brice phil silvers bob hope clifton webb gloria swanson marlene dietrich judy holliday ethel barrymore jimmy durante milton berle josephine baker laurence olivier vivien leigh george sanders yul brynner shirley booth peggy lee rosalind russell merv griffin 1950s' title='The Big Show'> cover image @@ -608,7 +608,7 @@ hx-target='main' hx-push-url='/series/the-big-story' hx-swap='innerHTML show:top' - data-filter='the big story' + data-filter='the big story 1940s 1950s' title='The Big Story'> cover image @@ -628,7 +628,7 @@ hx-target='main' hx-push-url='/series/the-bing-crosby-rosemary-clooney-show' hx-swap='innerHTML show:top' - data-filter='the bing crosby - rosemary clooney show' + data-filter='the bing crosby - rosemary clooney show bing crosby rosemary clooney buddy cole ken carpenter 1960s' title='The Bing Crosby - Rosemary Clooney Show'> cover image @@ -648,7 +648,7 @@ hx-target='main' hx-push-url='/series/black-museum' hx-swap='innerHTML show:top' - data-filter='the black museum' + data-filter='the black museum orson welles robert rietti keith pyott joe mccormick harp mcguire michael york 1950s' title='The Black Museum'> cover image @@ -668,7 +668,7 @@ hx-target='main' hx-push-url='/series/blair-of-the-mounties' hx-swap='innerHTML show:top' - data-filter='blair of the mounties' + data-filter='blair of the mounties colonel rhys davies jack abbott jack french 1930s 1940s 1950s' title='Blair of the Mounties'> cover image @@ -688,7 +688,7 @@ hx-target='main' hx-push-url='/series/blondie' hx-swap='innerHTML show:top' - data-filter='blondie' + data-filter='blondie arthur lake penny singleton ann rutherford alice white patricia van cleve leone ledoux 1930s 1940s 1950s' title='Blondie'> cover image @@ -708,7 +708,7 @@ hx-target='main' hx-push-url='/series/the-blue-beetle' hx-swap='innerHTML show:top' - data-filter='the blue beetle' + data-filter='the blue beetle frank lovejoy 1940s' title='The Blue Beetle'> cover image @@ -728,7 +728,7 @@ hx-target='main' hx-push-url='/series/bob-and-ray' hx-swap='innerHTML show:top' - data-filter='bob and ray' + data-filter='bob and ray bob elliott ray goulding 1940s 1950s 1960s 1970s 1980s' title='Bob and Ray'> cover image @@ -748,7 +748,7 @@ hx-target='main' hx-push-url='/series/bold-venture' hx-swap='innerHTML show:top' - data-filter='bold venture' + data-filter='bold venture humphrey bogart lauren bacall jester hairston 1950s' title='Bold Venture'> cover image @@ -768,7 +768,7 @@ hx-target='main' hx-push-url='/series/boston-blackie' hx-swap='innerHTML show:top' - data-filter='boston blackie' + data-filter='boston blackie chester morris richard kollmar lesley woods harlow wilcox maurice tarplin jan miner 1940s 1950s' title='Boston Blackie'> cover image @@ -788,7 +788,7 @@ hx-target='main' hx-push-url='/series/box-13' hx-swap='innerHTML show:top' - data-filter='box 13' + data-filter='box 13 alan ladd sylvia picker edmund macdonald betty lou gerson lurene tuttle alan reed luis van rooten john beal frank lovejoy 1940s' title='Box 13'> cover image @@ -808,7 +808,7 @@ hx-target='main' hx-push-url='/series/bright-star' hx-swap='innerHTML show:top' - data-filter='bright star' + data-filter='bright star irene dunne fred macmurray 1950s' title='Bright Star'> cover image @@ -828,7 +828,7 @@ hx-target='main' hx-push-url='/series/broadway-is-my-beat' hx-swap='innerHTML show:top' - data-filter='broadway is my beat' + data-filter='broadway is my beat anthony ross larry thor charles calvert jack kruschen irene tedrow barney phillips lamont johnson herb ellis hy averback edgar barrier betty lou gerson harry bartell sheldon leonard martha wentworth lawrence dobkin mary jane croft 1940s 1950s' title='Broadway is My Beat'> cover image @@ -848,7 +848,7 @@ hx-target='main' hx-push-url='/series/buck-rogers' hx-swap='innerHTML show:top' - data-filter='buck rogers' + data-filter='buck rogers matt crowley curtis arnall carl frank john larkin adele ronson edgar stehli jack roseleigh joe granby ronald liss elaine melchior william bill shelley dan ocko arthur vinton 1930s 1940s' title='Buck Rogers'> cover image @@ -868,7 +868,7 @@ hx-target='main' hx-push-url='/series/bulldog-drummond' hx-swap='innerHTML show:top' - data-filter='bulldog drummond' + data-filter='bulldog drummond george coulouris santos ortega ned wever cedric hardwicke everett sloane luis van rooten rod hendrickson agnes moorehead paul stewart ray collins mercedes mccambridge ted brown henry morgan robert shepard 1940s 1950s' title='Bulldog Drummond'> cover image @@ -888,7 +888,7 @@ hx-target='main' hx-push-url='/series/the-burns-and-allen-show' hx-swap='innerHTML show:top' - data-filter='the burns and allen show' + data-filter='the burns and allen show george burns gracie allen 1930s 1940s 1950s' title='The Burns and Allen Show'> cover image @@ -908,7 +908,7 @@ hx-target='main' hx-push-url='/series/calling-all-cars' hx-swap='innerHTML show:top' - data-filter='calling all cars' + data-filter='calling all cars 1930s' title='Calling All Cars'> cover image @@ -928,7 +928,7 @@ hx-target='main' hx-push-url='/series/can-you-imagine-that' hx-swap='innerHTML show:top' - data-filter='can you imagine that' + data-filter='can you imagine that 1940s' title='Can You Imagine That'> cover image @@ -948,7 +948,7 @@ hx-target='main' hx-push-url='/series/candy-matson-yukon-2-8209' hx-swap='innerHTML show:top' - data-filter='candy matson, yukon 2-8209' + data-filter='candy matson, yukon 2-8209 natalie parks henry leff jack thomas helen kleeb john grober mary milford hal burdick dudley manlove 1940s 1950s' title='Candy Matson, YUkon 2-8209'> cover image @@ -968,7 +968,7 @@ hx-target='main' hx-push-url='/series/case-dismissed' hx-swap='innerHTML show:top' - data-filter='case dismissed' + data-filter='case dismissed unknown 1950s' title='Case Dismissed'> cover image @@ -988,7 +988,7 @@ hx-target='main' hx-push-url='/series/a-case-for-dr-morelle' hx-swap='innerHTML show:top' - data-filter='a case for dr. morelle' + data-filter='a case for dr. morelle cecil parker sheila sim jane grahame 1950s' title='A Case for Dr. Morelle'> cover image @@ -1008,7 +1008,7 @@ hx-target='main' hx-push-url='/series/casey-crime-photographer' hx-swap='innerHTML show:top' - data-filter='casey, crime photographer' + data-filter='casey, crime photographer matt crowley jim backus staats cotsworth jan miner lesley woods john gibson tony marvin 1940s 1950s' title='Casey, Crime Photographer'> cover image @@ -1028,7 +1028,7 @@ hx-target='main' hx-push-url='/series/cbs-radio-mystery-theater' hx-swap='innerHTML show:top' - data-filter='cbs radio mystery theater' + data-filter='cbs radio mystery theater e g marshall tammy grimes 1970s 1980s' title='CBS Radio Mystery Theater'> cover image @@ -1048,7 +1048,7 @@ hx-target='main' hx-push-url='/series/cbs-radio-workshop' hx-swap='innerHTML show:top' - data-filter='cbs radio workshop' + data-filter='cbs radio workshop 1950s' title='CBS Radio Workshop'> cover image @@ -1068,7 +1068,7 @@ hx-target='main' hx-push-url='/series/challenge-of-the-yukon' hx-swap='innerHTML show:top' - data-filter='challenge of the yukon' + data-filter='challenge of the yukon richard simmons brace beemer paul sutton 1930s 1940s 1950s' title='Challenge of the Yukon'> cover image @@ -1088,7 +1088,7 @@ hx-target='main' hx-push-url='/series/charlie-chan' hx-swap='innerHTML show:top' - data-filter='charlie chan' + data-filter='charlie chan warner oland manuel arb sidney toler roland winters ross martin peter ustinov 1920s 1930s 1940s' title='Charlie Chan'> cover image @@ -1108,7 +1108,7 @@ hx-target='main' hx-push-url='/series/the-chase' hx-swap='innerHTML show:top' - data-filter='the chase' + data-filter='the chase unknown 1950s' title='The Chase'> cover image @@ -1128,7 +1128,7 @@ hx-target='main' hx-push-url='/series/chick-carter-boy-detective' hx-swap='innerHTML show:top' - data-filter='chick carter, boy detective' + data-filter='chick carter, boy detective bill lipton leon janney jean mccoy joanne mccoy gilbert mack bill griffis stefan schnabel ken powell 1940s' title='Chick Carter, Boy Detective'> cover image @@ -1148,7 +1148,7 @@ hx-target='main' hx-push-url='/series/classic-baseball-mlb' hx-swap='innerHTML show:top' - data-filter='classic baseball mlb' + data-filter='classic baseball mlb 1920s 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 2020s' title='Classic Baseball MLB'> cover image @@ -1168,7 +1168,7 @@ hx-target='main' hx-push-url='/series/claudia' hx-swap='innerHTML show:top' - data-filter='claudia' + data-filter='claudia patricia ryan richard kollmar kathryn bard paul crabtree 1940s' title='Claudia'> cover image @@ -1188,7 +1188,7 @@ hx-target='main' hx-push-url='/series/cloak-and-dagger' hx-swap='innerHTML show:top' - data-filter='cloak and dagger' + data-filter='cloak and dagger raymond edward johnson everett sloane jackson beck virginia payne joseph julian jan miner les tremayne maurice tarplin boris aplon martin balsam 1950s' title='Cloak and Dagger'> cover image @@ -1208,7 +1208,7 @@ hx-target='main' hx-push-url='/series/the-clock' hx-swap='innerHTML show:top' - data-filter='the clock' + data-filter='the clock clark andrews cathy lewis elliott lewis jeanette nolan hans conried william conrad 1940s' title='The Clock'> cover image @@ -1228,7 +1228,7 @@ hx-target='main' hx-push-url='/series/club-car-special' hx-swap='innerHTML show:top' - data-filter='club car special' + data-filter='club car special 1930s' title='Club Car Special'> cover image @@ -1248,7 +1248,7 @@ hx-target='main' hx-push-url='/series/the-clyde-beatty-show' hx-swap='innerHTML show:top' - data-filter='the clyde beatty show' + data-filter='the clyde beatty show clyde beatty vic perrin 1950s' title='The Clyde Beatty Show'> cover image @@ -1268,7 +1268,7 @@ hx-target='main' hx-push-url='/series/comic-weekly-man' hx-swap='innerHTML show:top' - data-filter='comic weekly man' + data-filter='comic weekly man lon clark 1940s 1950s' title='Comic Weekly Man'> cover image @@ -1288,7 +1288,7 @@ hx-target='main' hx-push-url='/series/command-performance' hx-swap='innerHTML show:top' - data-filter='command performance' + data-filter='command performance jane russell bob hope major meredith willson bing crosby jack benny frank sinatra fred allen ginger rogers judy garland lena horne the andrews sisters orson welles ann miller carole landis lucille ball errol flynn 1940s' title='Command Performance'> cover image @@ -1308,7 +1308,7 @@ hx-target='main' hx-push-url='/series/complete-broadcast-day-d-day' hx-swap='innerHTML show:top' - data-filter='cbs complete broadcast day (1944)' + data-filter='cbs complete broadcast day (1944) 1940s' title='CBS Complete Broadcast Day (1944)'> cover image @@ -1328,7 +1328,7 @@ hx-target='main' hx-push-url='/series/crazy-hillbillies' hx-swap='innerHTML show:top' - data-filter='crazy hillbillies' + data-filter='crazy hillbillies 1930s' title='Crazy Hillbillies'> cover image @@ -1348,7 +1348,7 @@ hx-target='main' hx-push-url='/series/crazy-water-crystal-program' hx-swap='innerHTML show:top' - data-filter='crazy water crystal program' + data-filter='crazy water crystal program 1930s 1940s' title='Crazy Water Crystal Program'> cover image @@ -1368,7 +1368,7 @@ hx-target='main' hx-push-url='/series/crime-and-peter-chambers' hx-swap='innerHTML show:top' - data-filter='crime and peter chambers' + data-filter='crime and peter chambers dane clark bill zuckert fran carlon roger dekoven william griffis leon janney bryna raeburn elaine rost everett sloane edgar stehli evelyn varden patricia wheel lesley woods lawson zerbe 1950s' title='Crime and Peter Chambers'> cover image @@ -1388,7 +1388,7 @@ hx-target='main' hx-push-url='/series/crime-classics' hx-swap='innerHTML show:top' - data-filter='crime classics' + data-filter='crime classics lou merrill 1950s' title='Crime Classics'> cover image @@ -1408,7 +1408,7 @@ hx-target='main' hx-push-url='/series/the-crime-club' hx-swap='innerHTML show:top' - data-filter='the crime club' + data-filter='the crime club barry thomson raymond edward johnson 1940s' title='The Crime Club'> cover image @@ -1428,7 +1428,7 @@ hx-target='main' hx-push-url='/series/cruise-of-the-poll-parrot' hx-swap='innerHTML show:top' - data-filter='cruise of the poll parrot' + data-filter='cruise of the poll parrot marvin miller 1930s' title='Cruise of the Poll Parrot'> cover image @@ -1448,7 +1448,7 @@ hx-target='main' hx-push-url='/series/the-damon-runyon-theatre' hx-swap='innerHTML show:top' - data-filter='the damon runyon theatre' + data-filter='the damon runyon theatre john brown william conrad gerald mohr anne whitfield frank lovejoy jeff chandler hans conried parley baer 1940s 1950s' title='The Damon Runyon Theatre'> cover image @@ -1468,7 +1468,7 @@ hx-target='main' hx-push-url='/series/danger-dr-danfield' hx-swap='innerHTML show:top' - data-filter='danger, dr. danfield' + data-filter='danger, dr. danfield michael dunn joanne johnson 1940s' title='Danger, Dr. Danfield'> cover image @@ -1488,7 +1488,7 @@ hx-target='main' hx-push-url='/series/dangerous-assignment' hx-swap='innerHTML show:top' - data-filter='dangerous assignment' + data-filter='dangerous assignment brian donlevy herb butterfield betty moran 1940s 1950s' title='Dangerous Assignment'> cover image @@ -1508,7 +1508,7 @@ hx-target='main' hx-push-url='/series/dangerously-yours' hx-swap='innerHTML show:top' - data-filter='dangerously yours' + data-filter='dangerously yours victor jory 1940s' title='Dangerously Yours'> cover image @@ -1528,7 +1528,7 @@ hx-target='main' hx-push-url='/series/the-danny-kaye-show' hx-swap='innerHTML show:top' - data-filter='the danny kaye show' + data-filter='the danny kaye show danny kaye eve arden frank nelson lionel stander kenny delmar everett sloane joan edwards butterfly mcqueen 1940s' title='The Danny Kaye Show'> cover image @@ -1548,7 +1548,7 @@ hx-target='main' hx-push-url='/series/dark-fantasy' hx-swap='innerHTML show:top' - data-filter='dark fantasy' + data-filter='dark fantasy 1940s' title='Dark Fantasy'> cover image @@ -1568,7 +1568,7 @@ hx-target='main' hx-push-url='/series/a-date-with-judy' hx-swap='innerHTML show:top' - data-filter='a date with judy' + data-filter='a date with judy ann gillis mercedes mccambridge dellie ellis louise erickson paul mcgrath margaret brayton stanley farrar joseph kearns john brown bea benaderet georgia backus lois corbet myra marsh richard crenna jane powell wallace beery elizabeth taylor robert stack carmen miranda pat crowley mary linn beller john gibson flora campbell peter avramo jimmy sommer 1940s 1950s' title='A Date with Judy'> cover image @@ -1588,7 +1588,7 @@ hx-target='main' hx-push-url='/series/dear-adolf' hx-swap='innerHTML show:top' - data-filter='dear adolf' + data-filter='dear adolf 1940s' title='Dear Adolf'> cover image @@ -1608,7 +1608,7 @@ hx-target='main' hx-push-url='/series/delmore-brothers' hx-swap='innerHTML show:top' - data-filter='delmore brothers' + data-filter='delmore brothers alton delmore rabon delmore 1930s 1940s 1950s' title='Delmore Brothers'> cover image @@ -1628,7 +1628,7 @@ hx-target='main' hx-push-url='/series/democracy-in-america' hx-swap='innerHTML show:top' - data-filter='democracy in america' + data-filter='democracy in america barry morse alan king 1960s' title='Democracy in America'> cover image @@ -1648,7 +1648,7 @@ hx-target='main' hx-push-url='/series/the-devil-and-mr-o' hx-swap='innerHTML show:top' - data-filter='the devil and mr. o' + data-filter='the devil and mr. o 1940s' title='The Devil and Mr. O'> cover image @@ -1668,7 +1668,7 @@ hx-target='main' hx-push-url='/series/dimension-x' hx-swap='innerHTML show:top' - data-filter='dimension x' + data-filter='dimension x joe di santis wendell holmes santos ortega joseph julian jan miner roger de koven john gibson ralph bell john larkin les damon mason adams 1950s' title='Dimension X'> cover image @@ -1688,7 +1688,7 @@ hx-target='main' hx-push-url='/series/down-our-way' hx-swap='innerHTML show:top' - data-filter='down our way' + data-filter='down our way 1930s' title='Down Our Way'> cover image @@ -1708,7 +1708,7 @@ hx-target='main' hx-push-url='/series/dr-iq' hx-swap='innerHTML show:top' - data-filter='dr. iq' + data-filter='dr. iq james mcclain lew valentine jay owen tom kennedy bob shepard bill ewing 1930s 1940s 1950s' title='Dr. IQ'> cover image @@ -1728,7 +1728,7 @@ hx-target='main' hx-push-url='/series/dr-kildare' hx-swap='innerHTML show:top' - data-filter='dr. kildare' + data-filter='dr. kildare lew ayres lionel barrymore stacy harris isabel jewell jay novello george ellis paul frees raymond burr jack webb virginia gragg ted osborne 1940s 1950s' title='Dr. Kildare'> cover image @@ -1748,7 +1748,7 @@ hx-target='main' hx-push-url='/series/dragnet' hx-swap='innerHTML show:top' - data-filter='dragnet' + data-filter='dragnet jack webb barton yarborough barney phillips harry bartell herb ellis vic perrin ben alexander charles mcgraw raymond burr harry morgan tol avery various 1940s 1950s' title='Dragnet'> cover image @@ -1768,7 +1768,7 @@ hx-target='main' hx-push-url='/series/duffys-tavern' hx-swap='innerHTML show:top' - data-filter='duffy's tavern' + data-filter='duffy's tavern ed gardner shirley booth florence halop hazel shermet charlie cantor eddie green fats pichon alan reed 1940s 1950s' title='Duffy's Tavern'> cover image @@ -1788,7 +1788,7 @@ hx-target='main' hx-push-url='/series/edgar-bergen--charlie-mccarthy' hx-swap='innerHTML show:top' - data-filter='edgar bergen & charlie mccarthy' + data-filter='edgar bergen & charlie mccarthy edgar bergen judy canova don ameche dorothy lamour wc fields mae west ray noble miriam hopkins fred allen lucille ball frank sinatra liberace tallullah gary cooper fats waller gordon macrae betty hutton carole lombard linda darnell rita hayworth judy garland lena horne marilyn monroe rosemary clooney susan hayward anita louise hildegarde loretta sell johh garfield betty grable gene tierney lana turner veronica lake sydney greenstreet greer garson basil rathbone orson welles 1930s 1940s 1950s' title='Edgar Bergen & Charlie McCarthy'> cover image @@ -1808,7 +1808,7 @@ hx-target='main' hx-push-url='/series/ellery-queens-minute-mysteries' hx-swap='innerHTML show:top' - data-filter='ellery queen's minute mysteries' + data-filter='ellery queen's minute mysteries 1930s 1940s' title='Ellery Queen's Minute Mysteries'> cover image @@ -1828,7 +1828,7 @@ hx-target='main' hx-push-url='/series/encore-theater' hx-swap='innerHTML show:top' - data-filter='encore theater' + data-filter='encore theater lurene tuttle eric snowden gerald mohr ronald colman robert young lionel barrymore 1940s' title='Encore Theater'> cover image @@ -1848,7 +1848,7 @@ hx-target='main' hx-push-url='/series/escape' hx-swap='innerHTML show:top' - data-filter='escape' + data-filter='escape elvia allman eleanor audley parley baer michael ann barrett tony barrett harry bartell ted bliss lillian buyeff ken christy william conrad ted de corsia john dehner don diamond paul dubov sam edwards virginia gregg lou merrill howard mcnear jess kirkpatrick dee j thompson shep menken frank gerstle george neise jeanette nolan dan oherlihy barney phillips forrest lewis robert griffin alan reed bill johnstone sandra gould junius matthews carleton g young marvin miller frank lovejoy berry kroeger vic perrin elliott lewis eleanore tanin herb vigran jack webb peggy webber will wright peter leeds hans conreid jennette nolan jay novello jack edwards joan banks 1940s 1950s' title='Escape'> cover image @@ -1868,7 +1868,7 @@ hx-target='main' hx-push-url='/series/an-evening-with-groucho' hx-swap='innerHTML show:top' - data-filter='an evening with groucho' + data-filter='an evening with groucho groucho marx george fenneman 1970s' title='An Evening With Groucho'> cover image @@ -1888,7 +1888,7 @@ hx-target='main' hx-push-url='/series/exploring-tomorrow' hx-swap='innerHTML show:top' - data-filter='exploring tomorrow' + data-filter='exploring tomorrow mandel kramer bryna raeburn lawson zerbe lon clark mason adams connie lembcke larry haines don douglas bret morrison charlotte sheffield 1950s' title='Exploring Tomorrow'> cover image @@ -1908,7 +1908,7 @@ hx-target='main' hx-push-url='/series/the-falcon' hx-swap='innerHTML show:top' - data-filter='the falcon' + data-filter='the falcon berry kroeger james meighan les tremayne george petrie les damon joan banks elspeth eric joan alexander mandel kramer ken lynch 1940s 1950s' title='The Falcon'> cover image @@ -1928,7 +1928,7 @@ hx-target='main' hx-push-url='/series/family-doctor' hx-swap='innerHTML show:top' - data-filter='family doctor' + data-filter='family doctor 1930s' title='Family Doctor'> cover image @@ -1948,7 +1948,7 @@ hx-target='main' hx-push-url='/series/father-knows-best' hx-swap='innerHTML show:top' - data-filter='father knows best' + data-filter='father knows best robert young june whitley jean vander pyl rhoda williams ted donaldson norma jean nilsson 1940s 1950s' title='Father Knows Best'> cover image @@ -1968,7 +1968,7 @@ hx-target='main' hx-push-url='/series/the-fbi-in-peace-and-war' hx-swap='innerHTML show:top' - data-filter='the fbi in peace and war' + data-filter='the fbi in peace and war martin blaine donald briggs andre baruch hugh holder dick noel len sterling warren sweeney lisa loughlin 1940s 1950s' title='The FBI in Peace and War'> cover image @@ -1988,7 +1988,7 @@ hx-target='main' hx-push-url='/series/fibber-mcgee-and-molly' hx-swap='innerHTML show:top' - data-filter='fibber mcgee and molly' + data-filter='fibber mcgee and molly jim jordan marian jordan 1930s 1940s 1950s' title='Fibber McGee and Molly'> cover image @@ -2008,7 +2008,7 @@ hx-target='main' hx-push-url='/series/fire-fighters' hx-swap='innerHTML show:top' - data-filter='fire fighters' + data-filter='fire fighters cameron prudhomme lyle sudrow 1940s 1950s' title='Fire Fighters'> cover image @@ -2028,7 +2028,7 @@ hx-target='main' hx-push-url='/series/first-nighter' hx-swap='innerHTML show:top' - data-filter='first nighter' + data-filter='first nighter charles p hughes june meredith macdonald carey bret morrison marvin miller don briggs rye billsbury don ameche betty lou gerson les tremayne barbara luddy olan soule 1930s 1940s 1950s' title='First Nighter'> cover image @@ -2048,7 +2048,7 @@ hx-target='main' hx-push-url='/series/five-minute-mysteries' hx-swap='innerHTML show:top' - data-filter='five minute mysteries' + data-filter='five minute mysteries 1940s' title='Five Minute Mysteries'> cover image @@ -2068,7 +2068,7 @@ hx-target='main' hx-push-url='/series/flash-gordon' hx-swap='innerHTML show:top' - data-filter='flash gordon' + data-filter='flash gordon gale gordon 1930s' title='Flash Gordon'> cover image @@ -2088,7 +2088,7 @@ hx-target='main' hx-push-url='/series/fort-laramie' hx-swap='innerHTML show:top' - data-filter='fort laramie' + data-filter='fort laramie raymond burr vic perrin jack moyles 1950s' title='Fort Laramie'> cover image @@ -2108,7 +2108,7 @@ hx-target='main' hx-push-url='/series/frankenstein' hx-swap='innerHTML show:top' - data-filter='frankenstein' + data-filter='frankenstein boris karloff bela lugosi david carradine lon chaney jr glenn strange 1930s' title='Frankenstein'> cover image @@ -2128,7 +2128,7 @@ hx-target='main' hx-push-url='/series/the-fred-allen-show' hx-swap='innerHTML show:top' - data-filter='the fred allen show' + data-filter='the fred allen show fred allen portland hoffa minerva pious parker fennelly jack smart alan reed john brown charlie cantor ken roberts edmund ruffner harry von zell arthur godfrey jimmy wallington kenny delmar 1930s 1940s' title='The Fred Allen Show'> cover image @@ -2148,7 +2148,7 @@ hx-target='main' hx-push-url='/series/frontier-fighters' hx-swap='innerHTML show:top' - data-filter='frontier fighters' + data-filter='frontier fighters 1930s' title='Frontier Fighters'> cover image @@ -2168,7 +2168,7 @@ hx-target='main' hx-push-url='/series/frontier-town' hx-swap='innerHTML show:top' - data-filter='frontier town' + data-filter='frontier town jeff chandler reed hadley wade crosby 1940s 1950s' title='Frontier Town'> cover image @@ -2188,7 +2188,7 @@ hx-target='main' hx-push-url='/series/gangbusters' hx-swap='innerHTML show:top' - data-filter='gang busters' + data-filter='gang busters 1930s 1940s 1950s' title='Gang Busters'> cover image @@ -2208,7 +2208,7 @@ hx-target='main' hx-push-url='/series/grand-ole-opry' hx-swap='innerHTML show:top' - data-filter='grand ole opry' + data-filter='grand ole opry 1930s 1940s 1950s 1960s 1970s 1980s 1990s 2000s 2010s 2020s' title='Grand Ole Opry'> cover image @@ -2228,7 +2228,7 @@ hx-target='main' hx-push-url='/series/the-grantland-rice-story' hx-swap='innerHTML show:top' - data-filter='the grantland rice story' + data-filter='the grantland rice story jimmy powers 1950s' title='The Grantland Rice Story'> cover image @@ -2248,7 +2248,7 @@ hx-target='main' hx-push-url='/series/the-great-gildersleeve' hx-swap='innerHTML show:top' - data-filter='the great gildersleeve' + data-filter='the great gildersleeve harold peary willard waterman walter tetley lurene tuttle louise erickson mary lee robb lillian randolph richard crenna barbara whiting earle ross richard legrand arthur q bryan shirley mitchell bea benaderet una merkel martha scott cathy lewis gale gordon mel blanc conrad binyon mary costa 1940s 1950s' title='The Great Gildersleeve'> cover image @@ -2268,7 +2268,7 @@ hx-target='main' hx-push-url='/series/great-scenes-from-great-plays' hx-swap='innerHTML show:top' - data-filter='great scenes from great plays' + data-filter='great scenes from great plays walter h hampden basil rathbone beatrice straight jane cowl ann seymore boris karloff joan caulfield jane powell henry fonda gene tierney eddie albert 1940s' title='Great Scenes from Great Plays'> cover image @@ -2288,7 +2288,7 @@ hx-target='main' hx-push-url='/series/the-green-hornet' hx-swap='innerHTML show:top' - data-filter='the green hornet' + data-filter='the green hornet 1930s 1940s 1950s' title='The Green Hornet'> cover image @@ -2308,7 +2308,7 @@ hx-target='main' hx-push-url='/series/gunsmoke' hx-swap='innerHTML show:top' - data-filter='gunsmoke' + data-filter='gunsmoke william conrad parley baer howard mcnear georgia ellis 1950s 1960s' title='Gunsmoke'> cover image @@ -2328,7 +2328,7 @@ hx-target='main' hx-push-url='/series/halls-of-ivy' hx-swap='innerHTML show:top' - data-filter='halls of ivy' + data-filter='halls of ivy ronald colman benita hume herbert butterfield willard waterman elizabeth patterson gloria gordon alan reed virginia gregg lee patrick jean vander pyl rolfe sedan sidney miller william tracy sam edwards arthur q bryan barton yarborough james gleason jerry hausner 1950s' title='Halls of Ivy'> cover image @@ -2348,7 +2348,7 @@ hx-target='main' hx-push-url='/series/the-harold-peary-show' hx-swap='innerHTML show:top' - data-filter='the harold peary show' + data-filter='the harold peary show harold peary gloria holiday joseph kearns mary jane croft parley baer 1950s' title='The Harold Peary Show'> cover image @@ -2368,7 +2368,7 @@ hx-target='main' hx-push-url='/series/the-haunting-hour' hx-swap='innerHTML show:top' - data-filter='the haunting hour' + data-filter='the haunting hour 1940s' title='The Haunting Hour'> cover image @@ -2388,7 +2388,7 @@ hx-target='main' hx-push-url='/series/have-gun-will-travel' hx-swap='innerHTML show:top' - data-filter='have gun - will travel' + data-filter='have gun - will travel richard boone kam tong john dehner 1950s 1960s' title='Have Gun - Will Travel'> cover image @@ -2408,7 +2408,7 @@ hx-target='main' hx-push-url='/series/the-health-and-happiness-show' hx-swap='innerHTML show:top' - data-filter='the health and happiness show' + data-filter='the health and happiness show hank williams audrey williams 1940s' title='The Health and Happiness Show'> cover image @@ -2428,7 +2428,7 @@ hx-target='main' hx-push-url='/series/hello-americans' hx-swap='innerHTML show:top' - data-filter='hello americans' + data-filter='hello americans orson welles carmen miranda hans conried gerald mohr laird cregar agnes moorehead ray collins 1940s' title='Hello Americans'> cover image @@ -2448,7 +2448,7 @@ hx-target='main' hx-push-url='/series/heritage-over-the-land' hx-swap='innerHTML show:top' - data-filter='heritage over the land' + data-filter='heritage over the land 1950s' title='Heritage Over the Land'> cover image @@ -2468,7 +2468,7 @@ hx-target='main' hx-push-url='/series/the-hermits-cave' hx-swap='innerHTML show:top' - data-filter='the hermit's cave' + data-filter='the hermit's cave john kent mel johnson john dehner william conrad 1930s 1940s' title='The Hermit's Cave'> cover image @@ -2488,7 +2488,7 @@ hx-target='main' hx-push-url='/series/high-adventure' hx-swap='innerHTML show:top' - data-filter='high adventure' + data-filter='high adventure 1940s 1950s' title='High Adventure'> cover image @@ -2508,7 +2508,7 @@ hx-target='main' hx-push-url='/series/the-hillbilly-boys' hx-swap='innerHTML show:top' - data-filter='the hillbilly boys' + data-filter='the hillbilly boys w lee odaniel bob wills herman arnspiger milton brown leon huff kitty williamson 1930s' title='The Hillbilly Boys'> cover image @@ -2528,7 +2528,7 @@ hx-target='main' hx-push-url='/series/hopalong-cassidy' hx-swap='innerHTML show:top' - data-filter='hopalong cassidy' + data-filter='hopalong cassidy william boyd andy clyde 1940s 1950s' title='Hopalong Cassidy'> cover image @@ -2548,7 +2548,7 @@ hx-target='main' hx-push-url='/series/horatio-hornblower' hx-swap='innerHTML show:top' - data-filter='horatio hornblower' + data-filter='horatio hornblower michael redgrave 1950s' title='Horatio Hornblower'> cover image @@ -2568,7 +2568,7 @@ hx-target='main' hx-push-url='/series/i-love-a-mystery' hx-swap='innerHTML show:top' - data-filter='i love a mystery' + data-filter='i love a mystery michael raffetto russell thorson jay novello jim bannon john mcintire barton yarborough jim boles walter paterson tony randall gloria blondell 1930s 1940s 1950s' title='I Love a Mystery'> cover image @@ -2588,7 +2588,7 @@ hx-target='main' hx-push-url='/series/in-the-name-of-the-law' hx-swap='innerHTML show:top' - data-filter='in the name of the law' + data-filter='in the name of the law 1930s' title='In the Name of the Law'> cover image @@ -2608,7 +2608,7 @@ hx-target='main' hx-push-url='/series/incredible-but-true' hx-swap='innerHTML show:top' - data-filter='incredible, but true' + data-filter='incredible, but true ken nordine 1950s' title='Incredible, But True'> cover image @@ -2628,7 +2628,7 @@ hx-target='main' hx-push-url='/series/inner-sanctum-mysteries' hx-swap='innerHTML show:top' - data-filter='inner sanctum mysteries' + data-filter='inner sanctum mysteries raymond edward johnson paul mcgrath mary bennett boris karloff mary astor helen hayes peter lorre paul lukas claude rains frank sinatra orson welles santos ortega mercedes mccambridge berry kroeger lawson zerbe arnold moss leon janney mason adams richard widmark everett sloane burgess meredith agnes moorehead ken lynch anne seymour 1940s 1950s' title='Inner Sanctum Mysteries'> cover image @@ -2648,7 +2648,7 @@ hx-target='main' hx-push-url='/series/the-jack-benny-program' hx-swap='innerHTML show:top' - data-filter='the jack benny program' + data-filter='the jack benny program jack benny sadye marks ethel shutta george olsen don wilson james melton frank parker michael bartlett kenny baker dennis day eddie anderson bob crosby 1930s 1940s 1950s' title='The Jack Benny Program'> cover image @@ -2668,7 +2668,7 @@ hx-target='main' hx-push-url='/series/jeff-regan-investigator' hx-swap='innerHTML show:top' - data-filter='jeff regan, investigator' + data-filter='jeff regan, investigator jack webb frank graham paul dubov 1940s 1950s' title='Jeff Regan, Investigator'> cover image @@ -2688,7 +2688,7 @@ hx-target='main' hx-push-url='/series/jerry-at-fair-oaks' hx-swap='innerHTML show:top' - data-filter='jerry at fair oaks' + data-filter='jerry at fair oaks 1930s' title='Jerry at Fair Oaks'> cover image @@ -2708,7 +2708,7 @@ hx-target='main' hx-push-url='/series/jerry-of-the-circus' hx-swap='innerHTML show:top' - data-filter='jerry of the circus' + data-filter='jerry of the circus lindsay mcharrie howard mcnear elvia allman buddy duncan 1930s' title='Jerry of the Circus'> cover image @@ -2728,7 +2728,7 @@ hx-target='main' hx-push-url='/series/john-steele-adventurer' hx-swap='innerHTML show:top' - data-filter='john steele, adventurer' + data-filter='john steele, adventurer don douglas john larkin bryna raeburn jack edwards 1940s 1950s' title='John Steele, Adventurer'> cover image @@ -2748,7 +2748,7 @@ hx-target='main' hx-push-url='/series/jonathan-thomas-and-his-christmas-on-the-moon' hx-swap='innerHTML show:top' - data-filter='jonathan thomas and his christmas on the moon' + data-filter='jonathan thomas and his christmas on the moon 1930s' title='Jonathan Thomas and His Christmas on the Moon'> cover image @@ -2768,7 +2768,7 @@ hx-target='main' hx-push-url='/series/journey-into-space' hx-swap='innerHTML show:top' - data-filter='journey into space' + data-filter='journey into space andrew fauldsguy kingsley poynterbruce beebydon sharpdavid williamsdavid kossoffalfie bassdavid jacobs 1950s' title='Journey Into Space'> cover image @@ -2788,7 +2788,7 @@ hx-target='main' hx-push-url='/series/jump-jump-and-the-ice-queen' hx-swap='innerHTML show:top' - data-filter='jump jump and the ice queen' + data-filter='jump jump and the ice queen mary mcconnell harry hickox johnny mcgovern bob mitchell 1940s' title='Jump Jump and the Ice Queen'> cover image @@ -2808,7 +2808,7 @@ hx-target='main' hx-push-url='/series/the-key' hx-swap='innerHTML show:top' - data-filter='the key' + data-filter='the key 1950s' title='The Key'> cover image @@ -2828,7 +2828,7 @@ hx-target='main' hx-push-url='/series/let-george-do-it' hx-swap='innerHTML show:top' - data-filter='let george do it' + data-filter='let george do it bob bailey olan soule frances robinson virginia gregg lillian buyeff eddie firestone wally maher joseph kearns 1940s 1950s' title='Let George Do It'> cover image @@ -2848,7 +2848,7 @@ hx-target='main' hx-push-url='/series/the-life-of-riley' hx-swap='innerHTML show:top' - data-filter='the life of riley' + data-filter='the life of riley william bendix john brown grace coppin paula winslowe peggy conklin sharon douglas barbara eiler shirley mitchell francis dink trout tommy cook bobby ellis scotty beckett hans conried alan reed mel blanc wesley morgan 1940s 1950s' title='The Life of Riley'> cover image @@ -2868,7 +2868,7 @@ hx-target='main' hx-push-url='/series/life-with-luigi' hx-swap='innerHTML show:top' - data-filter='life with luigi' + data-filter='life with luigi j carroll naish hans conried alan reed jody gilbert mary shipp gil stratton joe forte ken peters 1940s 1950s' title='Life with Luigi'> cover image @@ -2888,7 +2888,7 @@ hx-target='main' hx-push-url='/series/light-crust-doughboys' hx-swap='innerHTML show:top' - data-filter='light crust doughboys' + data-filter='light crust doughboys bob wills milton brown tommy duncan cecil brower john parker kenneth pitts 1930s 1940s 1950s' title='Light Crust Doughboys'> cover image @@ -2908,7 +2908,7 @@ hx-target='main' hx-push-url='/series/lightning-jim' hx-swap='innerHTML show:top' - data-filter='lightning jim' + data-filter='lightning jim 1940s 1950s' title='Lightning Jim'> cover image @@ -2928,7 +2928,7 @@ hx-target='main' hx-push-url='/series/lights-out' hx-swap='innerHTML show:top' - data-filter='lights out' + data-filter='lights out 1930s 1940s' title='Lights Out'> cover image @@ -2948,7 +2948,7 @@ hx-target='main' hx-push-url='/series/the-line-up' hx-swap='innerHTML show:top' - data-filter='the line-up' + data-filter='the line-up bill johnstone joseph kearns wally maher warner anderson 1950s 1960s' title='The Line-Up'> cover image @@ -2968,7 +2968,7 @@ hx-target='main' hx-push-url='/series/the-lives-of-harry-lime' hx-swap='innerHTML show:top' - data-filter='the lives of harry lime' + data-filter='the lives of harry lime orson welles 1950s' title='The Lives of Harry Lime'> cover image @@ -2988,7 +2988,7 @@ hx-target='main' hx-push-url='/series/the-lone-ranger' hx-swap='innerHTML show:top' - data-filter='the lone ranger' + data-filter='the lone ranger george seaton earle graser brace beemer james jewell fred foy john todd roland parker jay michael bill saunders paul hughes jane fae rube and liz weiss john hodiak bob martin james lipton dick beals 1930s 1940s 1950s' title='The Lone Ranger'> cover image @@ -3008,7 +3008,7 @@ hx-target='main' hx-push-url='/series/love-story-magazine' hx-swap='innerHTML show:top' - data-filter='love story magazine' + data-filter='love story magazine 1930s' title='Love Story Magazine'> cover image @@ -3028,7 +3028,7 @@ hx-target='main' hx-push-url='/series/luke-slaughter-of-tombstone' hx-swap='innerHTML show:top' - data-filter='luke slaughter of tombstone' + data-filter='luke slaughter of tombstone sam buffington junius matthews 1950s' title='Luke Slaughter of Tombstone'> cover image @@ -3048,7 +3048,7 @@ hx-target='main' hx-push-url='/series/lum-and-abner' hx-swap='innerHTML show:top' - data-filter='lum and abner' + data-filter='lum and abner chester lauck norris goff 1930s 1940s 1950s' title='Lum and Abner'> cover image @@ -3068,7 +3068,7 @@ hx-target='main' hx-push-url='/series/lux-radio-theatre' hx-swap='innerHTML show:top' - data-filter='lux radio theatre' + data-filter='lux radio theatre miriam hopkins john boles marlene dietrich clark gable myrna loy william powell and many more 1930s 1940s 1950s' title='Lux Radio Theatre'> cover image @@ -3088,7 +3088,7 @@ hx-target='main' hx-push-url='/series/magic-island' hx-swap='innerHTML show:top' - data-filter='magic island' + data-filter='magic island sally creighton rosa barcelo tommy carr will h reynolds 1930s 1940s' title='Magic Island'> cover image @@ -3108,7 +3108,7 @@ hx-target='main' hx-push-url='/series/mama-blooms-brood' hx-swap='innerHTML show:top' - data-filter='mama bloom's brood' + data-filter='mama bloom's brood jake becky yetta sarah harold sidney 1930s' title='Mama Bloom's Brood'> cover image @@ -3128,7 +3128,7 @@ hx-target='main' hx-push-url='/series/the-man-called-x' hx-swap='innerHTML show:top' - data-filter='the man called x' + data-filter='the man called x herbert marshall leon belasco 1940s 1950s' title='The Man Called X'> cover image @@ -3148,7 +3148,7 @@ hx-target='main' hx-push-url='/series/mark-trail' hx-swap='innerHTML show:top' - data-filter='mark trail' + data-filter='mark trail matt crowley john larkin staats cotsworth jackson beck 1950s' title='Mark Trail'> cover image @@ -3168,7 +3168,7 @@ hx-target='main' hx-push-url='/series/the-marriage' hx-swap='innerHTML show:top' - data-filter='the marriage' + data-filter='the marriage hume cronyn jessica tandy denise alexander 1950s' title='The Marriage'> cover image @@ -3188,7 +3188,7 @@ hx-target='main' hx-push-url='/series/the-martin-and-lewis-show' hx-swap='innerHTML show:top' - data-filter='the martin and lewis show' + data-filter='the martin and lewis show dean martin jerry lewis 1940s 1950s' title='The Martin and Lewis Show'> cover image @@ -3208,7 +3208,7 @@ hx-target='main' hx-push-url='/series/matinee-theater' hx-swap='innerHTML show:top' - data-filter='matinee theater' + data-filter='matinee theater victor jory 1940s' title='Matinee Theater'> cover image @@ -3228,7 +3228,7 @@ hx-target='main' hx-push-url='/series/meet-corliss-archer' hx-swap='innerHTML show:top' - data-filter='meet corliss archer' + data-filter='meet corliss archer priscilla lyon janet waldo lugene sanders bill christy sam edwards bob bailey fred shields frank martin irene tedrow monty margetts gloria holden bebe young barbara whiting tommy bernard kenny godkin delores crane ann baker mary brian robin morgan warren berlinger 1940s 1950s' title='Meet Corliss Archer'> cover image @@ -3248,7 +3248,7 @@ hx-target='main' hx-push-url='/series/the-mel-blanc-show' hx-swap='innerHTML show:top' - data-filter='the mel blanc show' + data-filter='the mel blanc show mel blanc mary jane croft joseph kearns hans conreid alan reed earle ross jim backus bea benaderet the sportsmen quartet 1940s' title='The Mel Blanc Show'> cover image @@ -3268,7 +3268,7 @@ hx-target='main' hx-push-url='/series/melody-ranch' hx-swap='innerHTML show:top' - data-filter='melody ranch' + data-filter='melody ranch gene autry wendell niles tom hanlon lou crosby charles lyon pat buttram 1940s 1950s' title='Melody Ranch'> cover image @@ -3288,7 +3288,7 @@ hx-target='main' hx-push-url='/series/mercury-theatre' hx-swap='innerHTML show:top' - data-filter='mercury theatre' + data-filter='mercury theatre orson welles william alland edgar barrier ray collins joseph cotten george coulouris arlene francis alice frost martin gabel agnes moorehead frank readick elliott reid everett sloane howard smith paul stewart karl swenson virginia welles richard wilson eustace wyatt 1930s' title='Mercury Theatre'> cover image @@ -3308,7 +3308,7 @@ hx-target='main' hx-push-url='/series/michael-shayne' hx-swap='innerHTML show:top' - data-filter='michael shayne' + data-filter='michael shayne wally maher louise arthur joe forte cathy lewis jeff chandler donald curtis robert sterling vinton hayworth judith parrish richard denning 1940s 1950s' title='Michael Shayne'> cover image @@ -3328,7 +3328,7 @@ hx-target='main' hx-push-url='/series/mind-your-manners' hx-swap='innerHTML show:top' - data-filter='mind your manners' + data-filter='mind your manners 1940s' title='Mind Your Manners'> cover image @@ -3348,7 +3348,7 @@ hx-target='main' hx-push-url='/series/molle-mystery-theatre' hx-swap='innerHTML show:top' - data-filter='molle mystery theatre' + data-filter='molle mystery theatre joseph julian anne seymour raymond edward johnson peter lorre bernard lenrow roc rogers richard widmark budd collyer martin gable mandel kramer elspeth eric frank lovejoy alfred shirley robert carroll james westerfield 1940s 1950s' title='Molle Mystery Theatre'> cover image @@ -3368,7 +3368,7 @@ hx-target='main' hx-push-url='/series/moon-over-africa' hx-swap='innerHTML show:top' - data-filter='moon over africa' + data-filter='moon over africa 1930s' title='Moon Over Africa'> cover image @@ -3388,7 +3388,7 @@ hx-target='main' hx-push-url='/series/mothers-best-flour' hx-swap='innerHTML show:top' - data-filter='mother's best flour' + data-filter='mother's best flour hank williams louie buck 1950s' title='Mother's Best Flour'> cover image @@ -3408,7 +3408,7 @@ hx-target='main' hx-push-url='/series/mr-and-mrs-north' hx-swap='innerHTML show:top' - data-filter='mr. and mrs. north' + data-filter='mr. and mrs. north alice frost joseph curtin richard denning barbara britton frank lovejoy walter kinsella mandel kramer 1940s 1950s' title='Mr. and Mrs. North'> cover image @@ -3428,7 +3428,7 @@ hx-target='main' hx-push-url='/series/mr-district-attorney' hx-swap='innerHTML show:top' - data-filter='mr. district attorney' + data-filter='mr. district attorney dwight weist raymond edward johnson jay jostyn david brian maurice franklin vicki vola walter kinsella len doyle paul stewart frank lovejoy eleanor silver arlene francis 1930s 1940s 1950s' title='Mr. District Attorney'> cover image @@ -3448,7 +3448,7 @@ hx-target='main' hx-push-url='/series/mr-keen-tracer-of-lost-persons' hx-swap='innerHTML show:top' - data-filter='mr. keen, tracer of lost persons' + data-filter='mr. keen, tracer of lost persons bennett kilpack philip clarke arthur hughes jim kelly 1930s 1940s 1950s' title='Mr. Keen, Tracer of Lost Persons'> cover image @@ -3468,7 +3468,7 @@ hx-target='main' hx-push-url='/series/mr-moto' hx-swap='innerHTML show:top' - data-filter='mr. moto' + data-filter='mr. moto peter lorre henry silva james monk 1930s 1940s 1950s' title='Mr. Moto'> cover image @@ -3488,7 +3488,7 @@ hx-target='main' hx-push-url='/series/murder-at-midnight' hx-swap='innerHTML show:top' - data-filter='murder at midnight' + data-filter='murder at midnight 1940s 1950s' title='Murder at Midnight'> cover image @@ -3508,7 +3508,7 @@ hx-target='main' hx-push-url='/series/murder-by-experts' hx-swap='innerHTML show:top' - data-filter='murder by experts' + data-filter='murder by experts lawson zerbe ann shepherd santos ortega ralph bell william zuckert 1940s 1950s' title='Murder by Experts'> cover image @@ -3528,7 +3528,7 @@ hx-target='main' hx-push-url='/series/my-favorite-husband' hx-swap='innerHTML show:top' - data-filter='my favorite husband' + data-filter='my favorite husband lucille ball richard denning hans conried joseph kearns gale gordon bea benaderet 1940s 1950s' title='My Favorite Husband'> cover image @@ -3548,7 +3548,7 @@ hx-target='main' hx-push-url='/series/my-friend-irma' hx-swap='innerHTML show:top' - data-filter='my friend irma' + data-filter='my friend irma marie wilson cathy lewis john brown hans conreid lief erickson alan reed joan banks mary shipp kenny delmar bea benaderet 1940s 1950s' title='My Friend Irma'> cover image @@ -3568,7 +3568,7 @@ hx-target='main' hx-push-url='/series/the-mysterious-traveler' hx-swap='innerHTML show:top' - data-filter='the mysterious traveler' + data-filter='the mysterious traveler maurice tarplin jackson beck lon clark roger dekoven elspeth eric wendell holmes bill johnstone joseph julian jan miner santos ortega bryna raeburn frank readick luis van rooten ann shepherd lawson zerbe bill zuckert 1940s 1950s' title='The Mysterious Traveler'> cover image @@ -3588,7 +3588,7 @@ hx-target='main' hx-push-url='/series/mystery-house' hx-swap='innerHTML show:top' - data-filter='mystery house' + data-filter='mystery house 1920s 1930s 1940s 1950s' title='Mystery House'> cover image @@ -3608,7 +3608,7 @@ hx-target='main' hx-push-url='/series/mystery-in-the-air' hx-swap='innerHTML show:top' - data-filter='mystery in the air' + data-filter='mystery in the air peter lorre harry morgan 1940s' title='Mystery in the Air'> cover image @@ -3628,7 +3628,7 @@ hx-target='main' hx-push-url='/series/mystery-is-my-hobby' hx-swap='innerHTML show:top' - data-filter='mystery is my hobby' + data-filter='mystery is my hobby glen lagan 1940s' title='Mystery is My Hobby'> cover image @@ -3648,7 +3648,7 @@ hx-target='main' hx-push-url='/series/nero-wolfe-cbc' hx-swap='innerHTML show:top' - data-filter='nero wolfe (cbc)' + data-filter='nero wolfe (cbc) mavor moore don francks cec linder frank perry alfie scopp fiona reid jack creley neil munro jackie burroughs lally cadeau jayne eastwood brian george martha gibson lynne griffin barbara hamilton patricia hamilton helen hughs charmion king budd knapp maria loma arch mcdonnell meana e meana mary peery eric peterson august schellenberg ailine seaton terry tweed sandy webster 1980s' title='Nero Wolfe (CBC)'> cover image @@ -3668,7 +3668,7 @@ hx-target='main' hx-push-url='/series/the-new-adventures-of-nero-wolfe' hx-swap='innerHTML show:top' - data-filter='the new adventures of nero wolfe' + data-filter='the new adventures of nero wolfe santos ortega luis van rooten francis x bushman sydney greenstreet lawrence dobkin gerald mohr harry bartell herb ellis lamont johnson wally maher 1950s' title='The New Adventures of Nero Wolfe'> cover image @@ -3688,7 +3688,7 @@ hx-target='main' hx-push-url='/series/nick-carter-master-detective' hx-swap='innerHTML show:top' - data-filter='nick carter, master detective' + data-filter='nick carter, master detective lon clark helen choate charlotte manson john kane ed latimer bill lipton leon janney raymond edward johnson bill johnstone bryna raeburn michael fitzmaurice 1940s 1950s' title='Nick Carter, Master Detective'> cover image @@ -3708,7 +3708,7 @@ hx-target='main' hx-push-url='/series/night-beat' hx-swap='innerHTML show:top' - data-filter='night beat' + data-filter='night beat frank lovejoy donald rickles joan banks parley baer william conrad jeff corey lawrence dobkin paul frees jack kruschen peter leeds howard mcnear lurene tuttle martha wentworth ben wright 1950s' title='Night Beat'> cover image @@ -3728,7 +3728,7 @@ hx-target='main' hx-push-url='/series/obsession' hx-swap='innerHTML show:top' - data-filter='obsession' + data-filter='obsession vincent price ruth warrick william gargan miriam hopkins barton yarborough 1950s' title='Obsession'> cover image @@ -3748,7 +3748,7 @@ hx-target='main' hx-push-url='/series/old-fashioned-revival-hour' hx-swap='innerHTML show:top' - data-filter='old fashioned revival hour' + data-filter='old fashioned revival hour pastor charles e fuller 1940s' title='Old Fashioned Revival Hour'> cover image @@ -3768,7 +3768,7 @@ hx-target='main' hx-push-url='/series/old-gold-comedy-theater' hx-swap='innerHTML show:top' - data-filter='old gold comedy theater' + data-filter='old gold comedy theater harold lloyd 1940s' title='Old Gold Comedy Theater'> cover image @@ -3788,7 +3788,7 @@ hx-target='main' hx-push-url='/series/on-stage' hx-swap='innerHTML show:top' - data-filter='on stage' + data-filter='on stage elliot lewis cathy lewis 1950s' title='On Stage'> cover image @@ -3808,7 +3808,7 @@ hx-target='main' hx-push-url='/series/one-world-flight' hx-swap='innerHTML show:top' - data-filter='one world flight' + data-filter='one world flight 1940s' title='One World Flight'> cover image @@ -3828,7 +3828,7 @@ hx-target='main' hx-push-url='/series/our-miss-brooks' hx-swap='innerHTML show:top' - data-filter='our miss brooks' + data-filter='our miss brooks eve arden gale gordon jeff chandler richard crenna jane morgan announcer bob lemond verne smith hy averback 1940s 1950s' title='Our Miss Brooks'> cover image @@ -3848,7 +3848,7 @@ hx-target='main' hx-push-url='/series/the-pacific-story' hx-swap='innerHTML show:top' - data-filter='the pacific story' + data-filter='the pacific story gayne williams henry luce pearl s buck 1940s' title='The Pacific Story'> cover image @@ -3868,7 +3868,7 @@ hx-target='main' hx-push-url='/series/pat-novak-for-hire' hx-swap='innerHTML show:top' - data-filter='pat novak, for hire' + data-filter='pat novak, for hire jack webb ben morris raymond burr tudor owen john galbraith phyllis skelton 1940s' title='Pat Novak, for Hire'> cover image @@ -3888,7 +3888,7 @@ hx-target='main' hx-push-url='/series/people-are-funny' hx-swap='innerHTML show:top' - data-filter='people are funny' + data-filter='people are funny art baker art linkletter flip wilson 1940s 1950s 1960s' title='People are Funny'> cover image @@ -3908,7 +3908,7 @@ hx-target='main' hx-push-url='/series/perry-mason' hx-swap='innerHTML show:top' - data-filter='perry mason' + data-filter='perry mason bartlett robinson santos ortega donald briggs john larkin gertrude warner joan alexander matt crowley charles webster jan miner mandel kramer frank dane mercedes mccambridge 1940s 1950s' title='Perry Mason'> cover image @@ -3928,7 +3928,7 @@ hx-target='main' hx-push-url='/series/the-phil-harris-alice-faye-show' hx-swap='innerHTML show:top' - data-filter='the phil harris-alice faye show' + data-filter='the phil harris-alice faye show phil harris alice faye elliott lewis jeanine roose anne whitfield walter tetley gale gordon robert north bill forman 1940s 1950s' title='The Phil Harris-Alice Faye Show'> cover image @@ -3948,7 +3948,7 @@ hx-target='main' hx-push-url='/series/philo-vance' hx-swap='innerHTML show:top' - data-filter='philo vance' + data-filter='philo vance jose ferrer jackson beck george petrie joan alexander 1940s 1950s' title='Philo Vance'> cover image @@ -3968,7 +3968,7 @@ hx-target='main' hx-push-url='/series/pinto-pete-and-his-ranch-boys' hx-swap='innerHTML show:top' - data-filter='pinto pete and his ranch boys' + data-filter='pinto pete and his ranch boys jack ross joe bradley ken carson 1930s 1940s 1950s' title='Pinto Pete and his Ranch Boys'> cover image @@ -3988,7 +3988,7 @@ hx-target='main' hx-push-url='/series/pinto-pete-in-arizona' hx-swap='innerHTML show:top' - data-filter='pinto pete in arizona' + data-filter='pinto pete in arizona jack ross joe bradley ken carson 1930s 1940s 1950s' title='Pinto Pete in Arizona'> cover image @@ -4008,7 +4008,7 @@ hx-target='main' hx-push-url='/series/planet-man' hx-swap='innerHTML show:top' - data-filter='planet man' + data-filter='planet man 1950s' title='Planet Man'> cover image @@ -4028,7 +4028,7 @@ hx-target='main' hx-push-url='/series/police-headquarters' hx-swap='innerHTML show:top' - data-filter='police headquarters' + data-filter='police headquarters 1930s' title='Police Headquarters'> cover image @@ -4048,7 +4048,7 @@ hx-target='main' hx-push-url='/series/police-reporter' hx-swap='innerHTML show:top' - data-filter='police reporter' + data-filter='police reporter 1930s' title='Police Reporter'> cover image @@ -4068,7 +4068,7 @@ hx-target='main' hx-push-url='/series/ports-of-call' hx-swap='innerHTML show:top' - data-filter='ports of call' + data-filter='ports of call 1930s' title='Ports of Call'> cover image @@ -4088,7 +4088,7 @@ hx-target='main' hx-push-url='/series/proudly-we-hail' hx-swap='innerHTML show:top' - data-filter='proudly we hail' + data-filter='proudly we hail turhan bey lee tracy howard mcnear jeff chandler joe desantis miriam wolfe mason adams 1940s 1950s' title='Proudly We Hail'> cover image @@ -4108,7 +4108,7 @@ hx-target='main' hx-push-url='/series/quiet-please' hx-swap='innerHTML show:top' - data-filter='quiet, please' + data-filter='quiet, please ernest chappell 1940s' title='Quiet, Please'> cover image @@ -4128,7 +4128,7 @@ hx-target='main' hx-push-url='/series/quiz-kids' hx-swap='innerHTML show:top' - data-filter='quiz kids' + data-filter='quiz kids joe kelly clifton fadiman durward kirby milton berle 1940s 1950s' title='Quiz Kids'> cover image @@ -4148,7 +4148,7 @@ hx-target='main' hx-push-url='/series/ranger-bill' hx-swap='innerHTML show:top' - data-filter='ranger bill' + data-filter='ranger bill miron canaday ed ronne sr 1950s 1960s' title='Ranger Bill'> cover image @@ -4168,7 +4168,7 @@ hx-target='main' hx-push-url='/series/recollections-at-30' hx-swap='innerHTML show:top' - data-filter='recollections at 30' + data-filter='recollections at 30 judy garland h v kaltenborn irving berlin sophie tucker al jolson red skelton rudy vallee lynn fontanne alfred lunt connie boswell irene dunne fats waller dinah shore 1950s' title='Recollections at 30'> cover image @@ -4188,7 +4188,7 @@ hx-target='main' hx-push-url='/series/red-horse-ranch' hx-swap='innerHTML show:top' - data-filter='red horse ranch' + data-filter='red horse ranch foreman alabam tenderfoot idaho arizona cookie and tex 1930s' title='Red Horse Ranch'> cover image @@ -4208,7 +4208,7 @@ hx-target='main' hx-push-url='/series/the-red-skelton-show' hx-swap='innerHTML show:top' - data-filter='the red skelton show' + data-filter='the red skelton show red skelton mickey rooney 1950s 1960s 1970s' title='The Red Skelton Show'> cover image @@ -4228,7 +4228,7 @@ hx-target='main' hx-push-url='/series/redbook-dramas' hx-swap='innerHTML show:top' - data-filter='redbook dramas' + data-filter='redbook dramas 1930s' title='Redbook Dramas'> cover image @@ -4248,7 +4248,7 @@ hx-target='main' hx-push-url='/series/richard-diamond-private-detective' hx-swap='innerHTML show:top' - data-filter='richard diamond, private detective' + data-filter='richard diamond, private detective dick powell virginia gregg ed begley arthur q bryan ted decorsia alan reed wilms herbert 1940s 1950s 1960s' title='Richard Diamond, Private Detective'> cover image @@ -4268,7 +4268,7 @@ hx-target='main' hx-push-url='/series/ripleys-believe-it-or-not' hx-swap='innerHTML show:top' - data-filter='ripley's believe it or not' + data-filter='ripley's believe it or not robert ripley 1930s 1940s' title='Ripley's Believe It Or Not'> cover image @@ -4288,7 +4288,7 @@ hx-target='main' hx-push-url='/series/ripleys-one-minute-shorts' hx-swap='innerHTML show:top' - data-filter='ripley's one minute shorts' + data-filter='ripley's one minute shorts 1930s 1940s' title='Ripley's One Minute Shorts'> cover image @@ -4308,7 +4308,7 @@ hx-target='main' hx-push-url='/series/rocky-fortune' hx-swap='innerHTML show:top' - data-filter='rocky fortune' + data-filter='rocky fortune frank sinatra barney phillips raymond burr ed begley jack kruschen 1950s' title='Rocky Fortune'> cover image @@ -4328,7 +4328,7 @@ hx-target='main' hx-push-url='/series/rocky-jordan' hx-swap='innerHTML show:top' - data-filter='rocky jordan' + data-filter='rocky jordan jack moyles george raft jay novello lawrence dobkin lou krugman larry thor 1940s 1950s' title='Rocky Jordan'> cover image @@ -4348,7 +4348,7 @@ hx-target='main' hx-push-url='/series/rogues-gallery' hx-swap='innerHTML show:top' - data-filter='rogue's gallery' + data-filter='rogue's gallery dick powell lou merrill gerald mohr gloria blondell tony barrett lurene tuttle barry sullivan chester morris paul stewart 1940s 1950s' title='Rogue's Gallery'> cover image @@ -4368,7 +4368,7 @@ hx-target='main' hx-push-url='/series/romance' hx-swap='innerHTML show:top' - data-filter='romance' + data-filter='romance henry fonda humphrey bogart gregory peck shirley temple 1940s 1950s' title='Romance'> cover image @@ -4388,7 +4388,7 @@ hx-target='main' hx-push-url='/series/romance-of-the-ranchos' hx-swap='innerHTML show:top' - data-filter='romance of the ranchos' + data-filter='romance of the ranchos jerry farber ann whitfield nestor palva lou krugman marian wilkins gail bonney herb butterfield 1940s' title='Romance of the Ranchos'> cover image @@ -4408,7 +4408,7 @@ hx-target='main' hx-push-url='/series/rotary-golden-theater' hx-swap='innerHTML show:top' - data-filter='rotary golden theater' + data-filter='rotary golden theater 1950s' title='Rotary Golden Theater'> cover image @@ -4428,7 +4428,7 @@ hx-target='main' hx-push-url='/series/the-roy-rogers-show' hx-swap='innerHTML show:top' - data-filter='the roy rogers show' + data-filter='the roy rogers show roy rogers dale evans gabby hayes pat brady forrest lewis 1940s 1950s' title='The Roy Rogers Show'> cover image @@ -4448,7 +4448,7 @@ hx-target='main' hx-push-url='/series/the-saint' hx-swap='innerHTML show:top' - data-filter='the saint' + data-filter='the saint edgar barrier brian aherne vincent price tom conway barry sullivan 1940s 1950s' title='The Saint'> cover image @@ -4468,7 +4468,7 @@ hx-target='main' hx-push-url='/series/the-scarlet-pimpernel' hx-swap='innerHTML show:top' - data-filter='the scarlet pimpernel' + data-filter='the scarlet pimpernel marius goring 1950s' title='The Scarlet Pimpernel'> cover image @@ -4488,7 +4488,7 @@ hx-target='main' hx-push-url='/series/screen-directors-playhouse' hx-swap='innerHTML show:top' - data-filter='screen directors' playhouse' + data-filter='screen directors' playhouse fred astaire lucille ball tallulah bankhead charles boyer claudette colbert ronald colman gary cooper joan crawford bette davis marlene dietrich kirk douglas irene dunne douglas fairbanks jr henry fonda cary grant william holden burt lancaster james mason ray milland gregory peck william powell edward g robinson norma shearer barbara stanwyck james stewart john wayne loretta young and more 1940s 1950s' title='Screen Directors' Playhouse'> cover image @@ -4508,7 +4508,7 @@ hx-target='main' hx-push-url='/series/the-sealed-book' hx-swap='innerHTML show:top' - data-filter='the sealed book' + data-filter='the sealed book 1940s' title='The Sealed Book'> cover image @@ -4528,7 +4528,7 @@ hx-target='main' hx-push-url='/series/sears-radio-theater' hx-swap='innerHTML show:top' - data-filter='sears radio theater' + data-filter='sears radio theater parley baer mary jane croft howard culver john dehner virginia gregg janet waldo vic perrin hans conried marvin miller elliot lewis jeff corey lesley woods robert rockwell lurene tuttle eve arden keith andes harriet nelson alan young tom bosley marion ross lloyd bochner rick jason frank campanella toni tennille arthur hill dan oherlihy jesse white frank nelson jim jordan henry morgan daws butler june foray joan mccall don diamond peggy webber 1970s 1980s' title='Sears Radio Theater'> cover image @@ -4548,7 +4548,7 @@ hx-target='main' hx-push-url='/series/secret-agent-k-7-returns' hx-swap='innerHTML show:top' - data-filter='secret agent k-7 returns' + data-filter='secret agent k-7 returns unknown 1930s' title='Secret Agent K-7 Returns'> cover image @@ -4568,7 +4568,7 @@ hx-target='main' hx-push-url='/series/secrets-of-scotland-yard' hx-swap='innerHTML show:top' - data-filter='secrets of scotland yard' + data-filter='secrets of scotland yard clive brook 1940s 1950s' title='Secrets of Scotland Yard'> cover image @@ -4588,7 +4588,7 @@ hx-target='main' hx-push-url='/series/sf-68' hx-swap='innerHTML show:top' - data-filter='sf-68' + data-filter='sf-68 michael mccabe 1960s' title='SF-68'> cover image @@ -4608,7 +4608,7 @@ hx-target='main' hx-push-url='/series/the-shadow' hx-swap='innerHTML show:top' - data-filter='the shadow' + data-filter='the shadow orson welles frank readick 1930s 1940s' title='The Shadow'> cover image @@ -4628,7 +4628,7 @@ hx-target='main' hx-push-url='/series/shell-chateau' hx-swap='innerHTML show:top' - data-filter='shell chateau' + data-filter='shell chateau al jolson wallace beery walter winchell smith ballew joe cook louis armstrong john barrymore lionel barrymore ben blue bette davis joan davis florence gill george jessel boris karloff dixie lee joe e lewis john mccormack maxie rosenbloom joe penner eleanor powell ginger rogers babe ruth benay venuta fats waller johnny weissmuller june marlowe midge williams lee wiley 1930s' title='Shell Chateau'> cover image @@ -4648,7 +4648,7 @@ hx-target='main' hx-push-url='/series/sherlock-holmes' hx-swap='innerHTML show:top' - data-filter='sherlock holmes' + data-filter='sherlock holmes william gillette clive brook richard gordon louis hector leigh lovell harry west joseph bell sir john gielgud sir ralph richardson orson welles 1930s 1940s 1950s' title='Sherlock Holmes'> cover image @@ -4668,7 +4668,7 @@ hx-target='main' hx-push-url='/series/the-six-shooter' hx-swap='innerHTML show:top' - data-filter='the six shooter' + data-filter='the six shooter james stewart parley baer virginia gregg harry bartell howard mcnear jeanette nolan dan oherlihy alan reed marvin miller william conrad 1950s' title='The Six Shooter'> cover image @@ -4688,7 +4688,7 @@ hx-target='main' hx-push-url='/series/soldiers-of-the-press' hx-swap='innerHTML show:top' - data-filter='soldiers of the press' + data-filter='soldiers of the press walter cronkite harrison salisbury ralph teasdale ann stringer lon clark jackson beck eleanor packard frank hewlett charles arnot 1940s' title='Soldiers of the Press'> cover image @@ -4708,7 +4708,7 @@ hx-target='main' hx-push-url='/series/the-sound-of-war' hx-swap='innerHTML show:top' - data-filter='the sound of war' + data-filter='the sound of war david greenspan bud greenspan 1950s 1960s' title='The Sound of War'> cover image @@ -4728,7 +4728,7 @@ hx-target='main' hx-push-url='/series/space-patrol' hx-swap='innerHTML show:top' - data-filter='space patrol' + data-filter='space patrol ed kemmer lyn osborn virginia hewitt ken mayer norman jolley nina bara bela kovacs dick tufeld dick wesson 1950s' title='Space Patrol'> cover image @@ -4748,7 +4748,7 @@ hx-target='main' hx-push-url='/series/speed-gibson-of-the-international-secret-police' hx-swap='innerHTML show:top' - data-filter='speed gibson of the international secret police' + data-filter='speed gibson of the international secret police howard mcnear john gibson gale gordon hanley stafford jack mathers victor rodman sam edwards 1930s 1940s' title='Speed Gibson of the International Secret Police'> cover image @@ -4768,7 +4768,7 @@ hx-target='main' hx-push-url='/series/stand-by-for-crime' hx-swap='innerHTML show:top' - data-filter='stand by for crime' + data-filter='stand by for crime glen langen adele jurgens 1950s' title='Stand By for Crime'> cover image @@ -4788,7 +4788,7 @@ hx-target='main' hx-push-url='/series/strange-as-it-seems' hx-swap='innerHTML show:top' - data-filter='strange as it seems' + data-filter='strange as it seems gayne whitman cyril armbrister felix mills 1930s 1940s' title='Strange as it Seems'> cover image @@ -4808,7 +4808,7 @@ hx-target='main' hx-push-url='/series/the-strange-dr-weird' hx-swap='innerHTML show:top' - data-filter='the strange dr. weird' + data-filter='the strange dr. weird maurice tarplin 1940s' title='The Strange Dr. Weird'> cover image @@ -4828,7 +4828,7 @@ hx-target='main' hx-push-url='/series/strange-wills' hx-swap='innerHTML show:top' - data-filter='strange wills' + data-filter='strange wills warren william howard culver carleton g young lurene tuttle william conrad peggy webber 1940s' title='Strange Wills'> cover image @@ -4848,7 +4848,7 @@ hx-target='main' hx-push-url='/series/superman' hx-swap='innerHTML show:top' - data-filter='superman' + data-filter='superman bud collyer joan alexander julian noa jackie kelk 1940s 1950s' title='Superman'> cover image @@ -4868,7 +4868,7 @@ hx-target='main' hx-push-url='/series/suspense' hx-swap='innerHTML show:top' - data-filter='suspense' + data-filter='suspense lurene tuttle rosalind russell jimmy stewart gene kelly charles ruggles alice frost jack webb alfred hitchcock alan ladd dane clark cary grant susan hayward rita hayworth peter lorre vincent price charles laughton loretta young lillian gish olivia de havilland orson welles james stewart 1940s 1950s 1960s' title='Suspense'> cover image @@ -4888,7 +4888,7 @@ hx-target='main' hx-push-url='/series/tales-of-the-diamond-k' hx-swap='innerHTML show:top' - data-filter='tales of the diamond k' + data-filter='tales of the diamond k ken maynard 1950s' title='Tales of the Diamond K'> cover image @@ -4908,7 +4908,7 @@ hx-target='main' hx-push-url='/series/tales-of-the-texas-rangers' hx-swap='innerHTML show:top' - data-filter='tales of the texas rangers' + data-filter='tales of the texas rangers joel mccrea willard parker harry lauter 1950s' title='Tales of the Texas Rangers'> cover image @@ -4928,7 +4928,7 @@ hx-target='main' hx-push-url='/series/tarzan-and-the-diamond-of-asher' hx-swap='innerHTML show:top' - data-filter='tarzan and the diamond of asher' + data-filter='tarzan and the diamond of asher 1930s' title='Tarzan and the Diamond of Asher'> cover image @@ -4948,7 +4948,7 @@ hx-target='main' hx-push-url='/series/tarzan-and-the-fires-of-tohr' hx-swap='innerHTML show:top' - data-filter='tarzan and the fires of tohr' + data-filter='tarzan and the fires of tohr 1930s' title='Tarzan and the Fires of Tohr'> cover image @@ -4968,7 +4968,7 @@ hx-target='main' hx-push-url='/series/tarzan-of-the-apes' hx-swap='innerHTML show:top' - data-filter='tarzan of the apes' + data-filter='tarzan of the apes joan burroughs jim pierce 1930s' title='Tarzan of the Apes'> cover image @@ -4988,7 +4988,7 @@ hx-target='main' hx-push-url='/series/tarzan-lord-of-the-jungle' hx-swap='innerHTML show:top' - data-filter='tarzan: lord of the jungle' + data-filter='tarzan: lord of the jungle 1950s' title='Tarzan: Lord of the Jungle'> cover image @@ -5008,7 +5008,7 @@ hx-target='main' hx-push-url='/series/the-tenth-man' hx-swap='innerHTML show:top' - data-filter='the tenth man' + data-filter='the tenth man jackson beck ralph bellamy 1940s' title='The Tenth Man'> cover image @@ -5028,7 +5028,7 @@ hx-target='main' hx-push-url='/series/theater-five' hx-swap='innerHTML show:top' - data-filter='theater five' + data-filter='theater five george o petrie brett morrison jackson beck robert dryden elliott reid court benson cliff carpenter bryna raeburn james earl jones alan alda ed begley romeo muller 1960s' title='Theater Five'> cover image @@ -5048,7 +5048,7 @@ hx-target='main' hx-push-url='/series/theatre-royal' hx-swap='innerHTML show:top' - data-filter='theatre royal' + data-filter='theatre royal sir lawrence olivier sir ralph richardson sir john gielgud robert morley harry andrews muriel forbes robert donat daphne maddox 1950s' title='Theatre Royal'> cover image @@ -5068,7 +5068,7 @@ hx-target='main' hx-push-url='/series/this-is-your-fbi' hx-swap='innerHTML show:top' - data-filter='this is your fbi' + data-filter='this is your fbi stacy harris william conrad bea benaderet jay c flippen betty white herb ellis michael ann barrett carleton young georgia ellis 1940s 1950s' title='This is Your FBI'> cover image @@ -5088,7 +5088,7 @@ hx-target='main' hx-push-url='/series/truth-or-consequences' hx-swap='innerHTML show:top' - data-filter='truth or consequences' + data-filter='truth or consequences ralph edwards jack bailey bob barker steve dunne bob hilton larry anderson 1940s 1950s 1960s' title='Truth or Consequences'> cover image @@ -5108,7 +5108,7 @@ hx-target='main' hx-push-url='/series/the-unexpected' hx-swap='innerHTML show:top' - data-filter='the unexpected' + data-filter='the unexpected barry sullivan marsha hunt lurene tuttle virginia gregg 1940s' title='The Unexpected'> cover image @@ -5128,7 +5128,7 @@ hx-target='main' hx-push-url='/series/vic-and-sade' hx-swap='innerHTML show:top' - data-filter='vic and sade' + data-filter='vic and sade art van harvey bernardine flynn bill idelson clarence hartzell david whitehouse 1930s 1940s 1950s' title='Vic and Sade'> cover image @@ -5148,7 +5148,7 @@ hx-target='main' hx-push-url='/series/vox-pop' hx-swap='innerHTML show:top' - data-filter='vox pop' + data-filter='vox pop parks johnson wally butterworth jerry belcher neil omalley warren hull 1930s 1940s' title='Vox Pop'> cover image @@ -5168,7 +5168,7 @@ hx-target='main' hx-push-url='/series/we-came-this-way' hx-swap='innerHTML show:top' - data-filter='we came this way' + data-filter='we came this way dana andrews 1940s' title='We Came This Way'> cover image @@ -5188,7 +5188,7 @@ hx-target='main' hx-push-url='/series/the-weird-circle' hx-swap='innerHTML show:top' - data-filter='the weird circle' + data-filter='the weird circle lawson zerbe gladys thornton walter vaughn arnold moss 1940s' title='The Weird Circle'> cover image @@ -5208,7 +5208,7 @@ hx-target='main' hx-push-url='/series/the-whistler' hx-swap='innerHTML show:top' - data-filter='the whistler' + data-filter='the whistler bill forman gale gordon joseph kearns cathy lewis elliott lewis gerald mohr lurene tuttle jack webb marvin miller everett clarke bill johnstone 1940s 1950s' title='The Whistler'> cover image @@ -5228,7 +5228,7 @@ hx-target='main' hx-push-url='/series/whitehall-1212' hx-swap='innerHTML show:top' - data-filter='whitehall 1212' + data-filter='whitehall 1212 londonbased actors 1950s' title='Whitehall 1212'> cover image @@ -5248,7 +5248,7 @@ hx-target='main' hx-push-url='/series/wild-bill-hickok' hx-swap='innerHTML show:top' - data-filter='wild bill hickok' + data-filter='wild bill hickok guy madison andy devine 1950s' title='Wild Bill Hickok'> cover image @@ -5268,7 +5268,7 @@ hx-target='main' hx-push-url='/series/wjsv-complete-broadcast-day' hx-swap='innerHTML show:top' - data-filter='wjsv complete broadcast day' + data-filter='wjsv complete broadcast day 1930s' title='WJSV Complete Broadcast Day'> cover image @@ -5288,7 +5288,7 @@ hx-target='main' hx-push-url='/series/words-at-war' hx-swap='innerHTML show:top' - data-filter='words at war' + data-filter='words at war 1940s' title='Words at War'> cover image @@ -5308,7 +5308,7 @@ hx-target='main' hx-push-url='/series/world-adventurers-club' hx-swap='innerHTML show:top' - data-filter='world adventurer's club' + data-filter='world adventurer's club hanley stafford 1930s' title='World Adventurer's Club'> cover image @@ -5328,7 +5328,7 @@ hx-target='main' hx-push-url='/series/x-minus-one' hx-swap='innerHTML show:top' - data-filter='x minus one' + data-filter='x minus one 1950s' title='X Minus One'> cover image @@ -5348,7 +5348,7 @@ hx-target='main' hx-push-url='/series/you-are-there' hx-swap='innerHTML show:top' - data-filter='you are there' + data-filter='you are there richard c hottelet john daly don hollenbeck canada lee martin gabel john cassavetes james dean vivi janiss paul newman jeanette nolan 1940s 1950s' title='You Are There'> cover image @@ -5368,7 +5368,7 @@ hx-target='main' hx-push-url='/series/you-bet-your-life' hx-swap='innerHTML show:top' - data-filter='you bet your life' + data-filter='you bet your life groucho marx buddy hackett bill cosby jay leno 1940s 1950s 1960s' title='You Bet Your Life'> cover image @@ -5388,7 +5388,7 @@ hx-target='main' hx-push-url='/series/you-cant-do-business-with-hitler' hx-swap='innerHTML show:top' - data-filter='you can't do business with hitler' + data-filter='you can't do business with hitler 1940s' title='You Can't Do Business With Hitler'> cover image @@ -5408,7 +5408,7 @@ hx-target='main' hx-push-url='/series/yours-truly-johnny-dollar' hx-swap='innerHTML show:top' - data-filter='yours truly, johnny dollar' + data-filter='yours truly, johnny dollar dick powell charles russell edmond obrien john lund gerald mohr bob bailey bob readick mandel kramer 1940s 1950s 1960s' title='Yours Truly, Johnny Dollar'> cover image diff --git a/site/partial/series/2000-plus.html b/site/partial/series/2000-plus.html index a4343f2..1f297a5 100644 --- a/site/partial/series/2000-plus.html +++ b/site/partial/series/2000-plus.html @@ -162,9 +162,12 @@

2000 Plus was a groundbreaking radio anthology series focused on science fiction for adults, featuring all original stories written by creator Sherman H. Dryer and various staff writers. The series explored what life might be like in "the years beyond 2000 AD," presenting stories of uneven quality that often reflected paranoia about the impact of technological advances. This innovative series is often overshadowed by more well-known shows such as Dimension X, X Minus One, and Exploring Tomorrow, but is worth revisiting for science fiction fans who want to hear original stories not published or adapted elsewhere.

The show aired from March 15, 1950, to December 26, 1951, on the Mutual Broadcasting Network, predating NBC's Dimension X by about a month. It featured a variety of time slots during its two-year run, moving around the Mutual schedule in 1951 before airing its final episode at the end of the year. Nearly 90 episodes of 2000 Plus were broadcast, but only 16 are known to exist today. The series was directed and produced by its creator, Sherman H. Dryer, and starred radio actors such as Joseph Julian, Bill Keene, Lon Clark, Amzie Strickland, and Bryna Raeburn, among others. The show's dramatic orchestral music was composed by Elliott Jacoby and conducted by Emerson Buckley. -

Sources: +

+

Performers: Lon Clark, Joseph Julian, Henry Norell, Bill Keene, Bryna Raeburn, Amzie Strickland

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+
\ No newline at end of file diff --git a/site/partial/series/21st-precinct.html b/site/partial/series/21st-precinct.html index dcc1291..37bcb87 100644 --- a/site/partial/series/21st-precinct.html +++ b/site/partial/series/21st-precinct.html @@ -918,9 +918,12 @@

21st Precinct was a dramatic police radio drama set in New York City focused on the happenings in an actual police precinct. The show aimed to immerse the listener in the drama, following events from the opening phone call to the final report. The primary character was the Captain of the precinct, who also acted as the show's narrator.

The show aired on the CBS network from July 7th, 1953 through November 1st, 1956. It was presented with the official cooperation of the Patrolmen's Benevolent Association, an organization of more than 20,000 members of the New York City Police Department. Three actors played the role of the Captain: Everett Sloane as Frank Kennelly for the first 109 episodes, James Gregory as Vincent Cronin for episodes 109-144, and Les Damon as Thomas Keough from episode 145 till the end of the series. In total, 92 episodes are in circulation today. -

Sources: +

+

Performers: Everett Sloane, James Gregory, Les Damon, Ken Lynch, Harold Stone, Santos Ortega, Jack Orissa, Art Hanna, Bob Hill, Hugh Holder

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+
\ No newline at end of file diff --git a/site/partial/series/33-half-moon-street.html b/site/partial/series/33-half-moon-street.html index a3c5cd6..24f3a60 100644 --- a/site/partial/series/33-half-moon-street.html +++ b/site/partial/series/33-half-moon-street.html @@ -423,9 +423,12 @@

33 Half Moon Street was a popular radio show from South Africa, featuring a private investigation firm called "Assignments Unlimited." The show's Chief Investigator, Aubrey Mason, voiced by Michael Todd, would guarantee the successful completion of all cases, often taking on unconventional and mysterious assignments. The show was known for its intriguing storytelling, suspenseful atmosphere, and character-driven narratives, drawing comparisons to the likes of Sam Spade. The theme music and narration style contributed to the show's engaging and entertaining tone.

The show aired between 1965 and 1966, with its episodes written by Adrian Steed and Douglas Laws. During its run, 33 Half Moon Street developed a loyal fan base and featured a variety of intriguing and oddball cases. One such example is Parson's Pride, where Mason is asked to retrieve a lost diamond earring from an inaccessible air duct, only to realize he hasn't been given the full truth about the situation. Another standout episode is Green for Danger, where Mason's associate Cannon is assigned to impersonate an injured vendor and handle a marketing cart, ultimately leading to unexpected adventures. While the show only aired for a couple of years, it remains a memorable part of radio history and a testament to the charm and allure of classic detective dramas. -

Sources: +

+

Performers: Michael Todd

+

Sources: otrcat.com -

+

+
\ No newline at end of file diff --git a/site/partial/series/a-case-for-dr-morelle.html b/site/partial/series/a-case-for-dr-morelle.html index 3ba8a74..5b6df54 100644 --- a/site/partial/series/a-case-for-dr-morelle.html +++ b/site/partial/series/a-case-for-dr-morelle.html @@ -135,9 +135,12 @@

A Case for Dr. Morelle is a radio show centered around the acerbic criminal psychologist Dr. Morelle and his eager but slightly inept secretary, Miss Frayle. The show's premise focuses on Dr. Morelle using his knowledge of criminal psychology to solve various crimes, such as murder, blackmail, and larceny, by determining which of the suspects fit the psychological profile of the perpetrator. Unlike other detectives like Sherlock Holmes, Dr. Morelle's investigations generally involve conducting interviews and occasionally incorporating physical evidence in his analysis. The show features a blend of humor and drama, with audiences enjoying the opinionated and eccentric doctor and his interactions with his loyal yet long-suffering secretary Miss Frayle.

A Case for Dr. Morelle aired in 1957 on the BBC Light Programme, running for 13 episodes on a weekly basis from April 23 to July 16. The character of Dr. Morelle was brought to life by author Ernest Dudley during World War Two air raids as he sought to create a unique detective while also providing a comic role for his wife, actress Jane Grahame. In the 1957 series, Dr. Morelle was portrayed by English comic actor Cecil Parker, and Sheila Sim played the role of Miss Frayle. Besides the radio plays, Ernest Dudley also wrote a stage play and a number of novels and short stories featuring these characters. -

Sources: +

+

Performers: Cecil Parker, Sheila Sim, Jane Grahame

+

Sources: archive.org -

+

+
\ No newline at end of file diff --git a/site/partial/series/a-date-with-judy.html b/site/partial/series/a-date-with-judy.html index 1dad770..7d58fdb 100644 --- a/site/partial/series/a-date-with-judy.html +++ b/site/partial/series/a-date-with-judy.html @@ -135,9 +135,12 @@

A Date with Judy is a comedy radio series aimed at a teenage audience. The show revolves around the life of Judy, a teenager who spends her days on the telephone, arranging, discussing, and lamenting the lack of dates. This teenage situation comedy is full of infectious giggling and teenage slang, capturing the excitement and drama of navigating adolescence. The series was co-created by Jerome Lawrence and Aleen Leslie, based on Leslie's “One Girl Chorus” column in the Pittsburgh Press.

First airing on June 24, 1941, A Date with Judy ran for nearly a decade, wrapping up its successful run on May 4, 1950. Over the years, the show appeared on both NBC and ABC radio networks and was sponsored by well-known brands such as Pepsodent, Bristol Myers, Tums, Ford Motors, and Revere Cameras. Throughout its run, A Date with Judy had a rotating cast, with notable actors like Ann Gillis, Paul McGrath, Margaret Brayton, and Richard Crenna. The popularity of the radio series led to the creation of a 1948 film starring Jane Powell, as well as a television adaptation that aired from 1951 to 1953. Additionally, A Date with Judy had a long run as a comic book, with 79 issues published from 1947 to 1960. -

Sources: +

+

Performers: Ann Gillis, Mercedes McCambridge, Dellie Ellis, Louise Erickson, Paul McGrath, Margaret Brayton, Stanley Farrar, Joseph Kearns, John Brown, Bea Benaderet, Georgia Backus, Lois Corbet, Myra Marsh, Richard Crenna, Jane Powell, Wallace Beery, Elizabeth Taylor, Robert Stack, Carmen Miranda, Pat Crowley, Mary Linn Beller, John Gibson, Flora Campbell, Peter Avramo, Jimmy Sommer

+

Sources: wikipedia.org, otrcat.com -

+

+
\ No newline at end of file diff --git a/site/partial/series/abbott-and-costello.html b/site/partial/series/abbott-and-costello.html index 3365596..36a85fc 100644 --- a/site/partial/series/abbott-and-costello.html +++ b/site/partial/series/abbott-and-costello.html @@ -1404,9 +1404,12 @@

The Abbott and Costello Show was a comedy program featuring the talents of the American comedy duo Bud Abbott and Lou Costello. The show centered around their attempts to navigate various business ventures, often incorporating sketches from their vaudeville act. The duo first began performing together in 1935 at the Eltinge Burlesque Theater on 42nd Street in New York City, refining their act with Abbott as the devious straight man and Costello as the dimwitted comic.

The show first aired on NBC from 1940 to 1947 before moving to ABC until 1949. Initially debuting on Kate Smith's radio program in 1938, the duo made several transitions between programs before landing their own weekly show on October 8, 1942, sponsored by Camel cigarettes. Over the years, the show featured guest stars like Cary Grant, Frank Sinatra, and Lucille Ball, and had various orchestras, writers, and regular cast members. Additionally, Abbott and Costello hosted a children's radio program, The Abbott and Costello Children's Show, on ABC on Saturday mornings from 1947 until 1949. -

Sources: +

+

Performers: Bud Abbott, Lou Costello

+

Sources: archive.org, wikipedia.org -

+

+
\ No newline at end of file diff --git a/site/partial/series/academy-award-theater.html b/site/partial/series/academy-award-theater.html index d8d52ca..c8a621e 100644 --- a/site/partial/series/academy-award-theater.html +++ b/site/partial/series/academy-award-theater.html @@ -369,9 +369,12 @@

Academy Award Theater was a CBS radio anthology series that presented 30-minute adaptations of plays, novels, or films. The series featured Hollywood's finest actors, actresses, and films, chosen from the list of winners or nominees of the famous golden Oscar of the Academy of Motion Picture Arts and Sciences. The series aimed to present any drama as long as the cast included at least one Oscar-nominated performer. Actors often recreated their original film roles, and some even reprised their Oscar-winning roles for the radio adaptations.

The series began on March 30, 1946, and ended on December 18, 1946, with a total of 39 episodes. The show initially aired on Saturdays at 7 pm (Eastern) through June, then moved to Wednesdays at 10 pm (Eastern). The series was produced by Dee Englebach, with music provided by Leith Stevens and script adaptations by Frank Wilson. The E.R. Squibb & Sons pharmaceutical company was the program's sponsor, but due to the high costs of production, including the weekly fees paid to both the stars and the Academy for the use of their name in the show's title, the series was eventually canceled after only 39 weeks. -

Sources: +

+

Performers: Bette Davis, Anne Revere, Fay Bainter, Jean Hersholt, Henry Fonda, Humphrey Bogart, Cary Grant, Gregory Peck, Ronald Colman, Fay Bainter, Paul Lukas, Victor McLaglen, Paul Muni, Ginger Rogers, John Lund, Joan Fontaine, Margaret O'Brien, Jeff Chandler

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+
\ No newline at end of file diff --git a/site/partial/series/adventure-ahead.html b/site/partial/series/adventure-ahead.html index 3cd2e40..fe6cc54 100644 --- a/site/partial/series/adventure-ahead.html +++ b/site/partial/series/adventure-ahead.html @@ -117,9 +117,11 @@

Adventure Ahead! is a captivating radio show that aired in the summer of 1944, featuring fourteen enthralling adventure novels and stories written by some of America's most prominent fiction authors. Primarily aimed at young audiences, it has a noticeably more masculine orientation, as evidenced by its absence of discernible love interests, female protagonists, or female authorities. Regardless, the program still offers captivating stories that emphasize defending freedom, both globally and domestically. Many of the stories revolve around male-oriented, "coming of age" tales that focus on themes of independence, courage, and the satisfaction of asserting one's convictions.

The show was broadcast on the NBC-Red radio network, spanning fourteen episodes in total. Adventure Ahead! offers a fascinating variety of stories that young listeners enjoyed during its run. These adventures encompass an array of scenarios, such as a boy training a runt puppy, a young lad learning about crime solving from the FBI, an orphan running away with the circus, and a boy adopted by pirates. Among other popular children's adventure radio shows of the era are Adventures of Sea Hound, Jerry at Fair Oaks, Jerry of the Circus, Speed Gibson, and Terry and the Pirates. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+
\ No newline at end of file diff --git a/site/partial/series/adventures-by-morse.html b/site/partial/series/adventures-by-morse.html index c9f83c8..4a80bf2 100644 --- a/site/partial/series/adventures-by-morse.html +++ b/site/partial/series/adventures-by-morse.html @@ -504,9 +504,12 @@

Adventures by Morse is a captivating syndicated adventure series that follows the thrilling escapades of Captain Bart Friday and his sidekick, Skip Turner. The duo embarks on a series of daring missions around the world, where they encounter various challenges and unearth sinister plots. The storyline includes exotic locations, mysterious events, and dark supernatural occurrences. The series is known for its distinctive opening, which invites listeners to immerse themselves in a world of high adventure, intrigue, and danger.

Adventures by Morse originally aired in syndication for a year, beginning in October 1944. The show comprises a total of 52 episodes, each 30 minutes long, and all have been preserved in high-quality sound. Created by the prolific author Carlton E. Morse, the series starred talented actors such as Elliott Lewis, David Ellis, Russell Thorson, and Barton Yarborough. Although broadcast dates and production years are uncertain, it is mentioned in the final two chapters of "It's Dismal to Die" that the Second World War has ended. Advertisements have been found for broadcasts in 1946 and 1949. -

Sources: +

+

Performers: Elliott Lewis, David Ellis, Russell Thorson, Barton Yarborough, Jack Edwards, Tony Randall

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/adventures-of-champion.html b/site/partial/series/adventures-of-champion.html index 6b61d9b..606a514 100644 --- a/site/partial/series/adventures-of-champion.html +++ b/site/partial/series/adventures-of-champion.html @@ -45,9 +45,11 @@

Adventures of Champion is an American Western serial radio drama focused on the story of Champion, the famous horse of screen cowboy Gene Autry. The episodes revolve around 12-year-old Ricky West, who lives in the wilderness with his adoptive Uncle Smoky and his German Shepherd named Rebel. Champion is portrayed as a wild horse who only allows Ricky to ride him. The series touched on topics such as gold mines, rustlers, and Indian problems, but centered mainly on the faith and loyalty between a boy, a dog, and a horse. Each story ran in five installments, starting on Monday and ending on Friday.

The radio show aired 15-minute episodes on weekday afternoons on the Mutual Broadcasting System between June 20, 1949, and November 1949. Little is known about the cast, with the identities of the lead actors playing Ricky and Uncle Smoky remaining a mystery. The only identified participant is Dave Light, an animal imitator who provided the sounds of all animals on the program. The Adventures of Champion was also adapted into a television series that aired for 26 episodes on CBS during the 1955-1956 season, starring Barry Curtis and Jim Bannon. -

Sources: +

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/adventures-of-philip-marlowe.html b/site/partial/series/adventures-of-philip-marlowe.html index 4bc2d50..6b956ab 100644 --- a/site/partial/series/adventures-of-philip-marlowe.html +++ b/site/partial/series/adventures-of-philip-marlowe.html @@ -945,9 +945,12 @@

The Adventures of Philip Marlowe was a radio show based on Raymond Chandler's private detective character, Philip Marlowe. Unlike many other detective dramas during that time, this show had a distinct hardboiled tone and featured few quips or quaint characters. The show's format/style followed Marlowe as he solved crimes using his keen observational skills and deductive reasoning, while encountering a variety of intriguing characters along the way, showcasing Marlowe's strong sense of justice and his grittier, urban environment.

The show first aired on June 17, 1947, on NBC, under the title The New Adventures of Philip Marlowe, with Van Heflin playing the lead role. The NBC series ended on September 9, 1947. In 1948, the series moved to CBS, where it was called The Adventures of Philip Marlowe and starred Gerald Mohr. By 1949, the show had become the most popular radio show in the United States. The CBS version had a run of 114 episodes from September 1948 to September 1950, with an additional summer run of episodes airing from July 7 to September 15, 1951. -

Sources: +

+

Performers: Van Heflin, Gerald Mohr, William Conrad

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/afloat-with-henry-morgan.html b/site/partial/series/afloat-with-henry-morgan.html index 5bcee9a..e91d09e 100644 --- a/site/partial/series/afloat-with-henry-morgan.html +++ b/site/partial/series/afloat-with-henry-morgan.html @@ -486,9 +486,12 @@

Afloat with Henry Morgan was a 52-episode Australian radio series that featured 12-minute-long episodes, likely aimed at a youth audience. The show, which centered around the captivating adventures of the infamous pirate, was produced by and starred George Edwards, a talented actor and ventriloquist known as "the Man with a Thousand Voices". Edwards employed his unique gift for mimicry to portray a wide range of characters, including children, various male voices, older women, and foreigners. In some instances, he would perform as many as six different voices in a single scene and often doubled this number within a single episode.

The series is believed to have originally aired in 1933, although it is easily confused with the US show, The Henry Morgan Show. Afloat with Henry Morgan was produced by Edwards, who also created other popular Australian series such as Dr Jekyll and Mr Hyde, Frankenstein, Corsican Brothers, and Son of Porthos. Collaborators on the show likely included enthusiasts Maurice Francis and Nell Sterling, both of whom had worked with Edwards on previous projects. -

Sources: +

+

Performers: George Edwards, Maurice Francis, Nell Sterling

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/air-mail-mystery.html b/site/partial/series/air-mail-mystery.html index 75ad221..8004603 100644 --- a/site/partial/series/air-mail-mystery.html +++ b/site/partial/series/air-mail-mystery.html @@ -117,9 +117,11 @@

Air Mail Mystery is a thrilling story revolving around the dangerous adventures of early air mail flight pioneers. Set in a time when postal services were gaining importance globally, the show focuses on a company called Trans American that delivers mail for the government. However, their planes mysteriously keep falling from the sky, leading to suspicion of sabotage or just plain bad luck. The show unravels this mystery as various characters come into play, including a girl operative from the US Justice Department, a roving reporter, and an undercover mechanic. With a blend of action, adventure, and an exploration of relationships, Air Mail Mystery kept its audience hooked to their radios.

This exciting show highlighted the importance of written communication and the evolution of mail delivery from the origins of writing to government-established postal services. With the advent of air mail services, the speed of mail delivery increased significantly but also added heightened risks, making for a perfect setting for this gripping series. The show's characters and situations captured the excitement and intrigue of the time as both postal services and aviation were taking off. Believed to have aired in the early 1930s, the show has left its mark in the hearts of avid radio show listeners for its engaging storytelling and unique premise. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/aladdin-lamp.html b/site/partial/series/aladdin-lamp.html index bb24dc0..319621e 100644 --- a/site/partial/series/aladdin-lamp.html +++ b/site/partial/series/aladdin-lamp.html @@ -342,9 +342,12 @@

Aladdin Lamp was a radio show in which Smilin' Ed McConnell, also known as "The Aladdin Lamp Man," promoted Aladdin Kerosene Lamps to his audience, primarily targeting housewives. The show featured Ed singing songs and telling stories, all while incorporating the advertiser's message and ultimately persuading listeners to purchase an Aladdin lamp. The program's format included an organ and piano accompaniment, played by Irma Allen and Del Owen, and was specifically tailored to appeal to its target audience of domestic heroines with its charming personality and entertaining content.

The radio show likely originated after 1948 when 145 ABC stations began subscribing to Smilin' Ed's 15-minute programs. The show was produced in short, four-and-a-half-minute episodes that were likely recorded for syndication and tailored for local radio broadcasts by hardware stores in various regions. In addition to promoting Aladdin Kerosene Lamps, Smilin' Ed also advertised Aladdin Electric Lamps, highlighting their range of functional and stylish lighting options for the home. Smilin' Ed McConnell went on to become a successful pitchman for Buster Brown Shoes in his later radio show, Smilin' Ed's Buster Brown Shoe Gang, winning audiences over with his friendly demeanor and engaging storytelling. -

Sources: +

+

Performers: Smilin' Ed McConnell, Irma Allen, Del Owen

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/alien-worlds.html b/site/partial/series/alien-worlds.html index 4f9c929..f3fef9b 100644 --- a/site/partial/series/alien-worlds.html +++ b/site/partial/series/alien-worlds.html @@ -288,9 +288,12 @@

Alien Worlds is a syndicated radio show created by Lee Hansen that follows the International Space Authority (ISA) as they explore deep space. Set on the Arthur C. Clarke Astronomical Observatory, the show features a cast of characters including Commissioner White, Research Director Dr. Maura Cassidy, Starlab's Director of Operations Jerry Lyden, and ISA pilots Captains Jon Graydon and Buddy Griff. Alien Worlds is well-known for its realistic sound effects, high production values, documentary-style dialog, and full symphonic soundtrack performed by the London Symphony Orchestra.

The show first premiered on January 7, 1979, and a total of 26 half-hour episodes aired between 1979 and 1980 on Watermark Inc. Alien Worlds gained popularity internationally, being broadcast on more than 500 US FM radio stations as well as stations in New Zealand and Australia. The series was sponsored by Peter Paul, Cadbury, which advertised their Cadbury Caramello chocolates. While the show is no longer aired on Sirius Satellite Radio or the Alien Worlds website, it is currently being developed for 3-D animation for television and DVD release. -

Sources: +

+

Performers: Linda Gary, Roger Dressler, Bruce Philip Miller, Chuck Olsen, Corey Burton

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/alka-seltzer-time.html b/site/partial/series/alka-seltzer-time.html index 84c6032..ad36bbd 100644 --- a/site/partial/series/alka-seltzer-time.html +++ b/site/partial/series/alka-seltzer-time.html @@ -189,9 +189,12 @@

Alka Seltzer Time, also known as The Alka-Seltzer Show, was a 15-minute radio program featuring a mix of popular tunes and upbeat jingles performed by vocalists Curt Massey and Martha Tilton. The show was described as "informal song sessions" and often featured accompanying music by Country Washburne and His Orchestra, with Charles LaVere on piano. Tunes performed on the show included "Honey, I'm in Love with You", "A Gambler's Guitar", "Just to Be with You", "Moonlight", "When Love Goes Wrong", "Choo Choo Train", "I've Got Spurs that Jingle Jangle Jingle", "Put on a Bonnet", "On the Sunny Side of the Street", "Papaya Mama", and "Istanbul, Not Constantinople". The show occasionally featured theme episodes such as "Go West", music from "Old Phonograph Records", and "Salute to Hawaii".

The radio show aired weekdays between 1949 and 1954 on both CBS Radio and the Mutual Broadcasting System. It began as The Curt Massey Show and was later renamed to The Alka-Seltzer Show in 1952 to highlight the show's sponsor. The show aired at different times throughout its run, with broadcasts on Mutual at noon Eastern Time and later in the day on CBS at 5:45 pm Eastern. A total of 115 episodes from this series are still known to exist today. Curt Massey and Martha Tilton continued to work together beyond the radio show, appearing on television programs such as Guest Star and Stars for Defense and recording an album titled "We Sing the Old Songs" in 1957. -

Sources: +

+

Performers: Curt Massey, Martha Tilton

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/all-star-western-theatre.html b/site/partial/series/all-star-western-theatre.html index 82139c4..2862cf1 100644 --- a/site/partial/series/all-star-western-theatre.html +++ b/site/partial/series/all-star-western-theatre.html @@ -846,9 +846,12 @@

All Star Western Theatre was a radio show that featured a variety of different shows during the mid-1940s. The program offered light-hearted humor and laughter as a pleasant alternative to heavier and more intense dramas of the time. The show's music was performed by a group called "The Riders of the Purple Sage," led by Foy Willing, and served as a backdrop to the episodes' Western-themed stories and sketches. The show was characterized by its "rootin' tootin' hoe-down" atmosphere, complete with guest appearances by popular stars of the time.

The radio show aired in the mid-1940s, and of the 78 episodes produced, 66 are still known to be in circulation today. The music group "The Riders of the Purple Sage" also appeared on other radio shows during this time, such as the Andrews Sisters' Eight-to-the-Bar Ranch in 1944-45, and the Roy Rogers Show between 1946 and 1948. Guest stars like Johnny Mack Brown added to the show's appeal, with action sketches and humorous skits providing entertainment for all ages. Much like the old western movies, All Star Western Theatre offered an honest, sincere, and unassuming form of entertainment that continues to resonate with audiences today. -

Sources: +

+

Performers: Foy Willing, Kenny Driver, Al Sloey, Johnny Paul, Johnny Mack Brown

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/amos-n-andy.html b/site/partial/series/amos-n-andy.html index dedae93..b928b8f 100644 --- a/site/partial/series/amos-n-andy.html +++ b/site/partial/series/amos-n-andy.html @@ -1179,9 +1179,12 @@

Amos 'n' Andy was an American radio sitcom about Black characters that began as one of the first radio comedy series. The show's protagonist, Amos Jones, was played by Freeman Gosden, while the character of Andrew Hogg Brown was played by Charles Correll. The duo also voiced incidental characters in the show. Initially set in Chicago and later in the Harlem section of New York City, the narrative revolved around the lives and various misadventures of Amos and Andrew. Amos was depicted as a hardworking family man, while Andrew was portrayed as a gullible dreamer with a penchant for get-rich-quick schemes. On television, Black actors took over the majority of the roles; white characters were infrequent.

Amos 'n' Andy was first broadcast on WMAQ in Chicago on March 19, 1928, and later aired on NBC and CBS Radio and Television. The show had a successful run in multiple formats, airing as a nightly radio serial from 1928 to 1943, a weekly situation comedy from 1943 to 1955, and a nightly disc-jockey program from 1954 to 1960. The television adaptation ran on CBS from 1951 to 1953 and continued in syndicated reruns from 1954 to 1966. The national radio audience was estimated at 40 million, comprised of Americans from a variety of races and national backgrounds. Despite being created and originally portrayed by white actors Gosden and Correll, the show held a significant place in American old-time radio culture during its 34-year run. Amos 'n' Andy continues to be remembered as a significant milestone in early 20th-century entertainment. -

Sources: +

+

Performers: Freeman Gosden, Charles Correll

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/an-evening-with-groucho.html b/site/partial/series/an-evening-with-groucho.html index a9feb89..42d2373 100644 --- a/site/partial/series/an-evening-with-groucho.html +++ b/site/partial/series/an-evening-with-groucho.html @@ -360,9 +360,12 @@

An Evening With Groucho is a radio show that offers a unique look at the life and career of famous comedian Groucho Marx, through his own words and experiences. Featuring anecdotes about his beginnings in vaudeville as part of the Marx Brothers, the show highlights Groucho's signature humor, equipped with witty remarks, innuendos, and tongue-in-cheek quips. Throughout the program, listeners are treated to a fascinating journey through Groucho's various career milestones, including the success of the Marx Brothers on stage and screen, his transition to radio and television hosting, and his political opinions and controversies.

The show delves into Groucho Marx's extensive career which began in vaudeville, where he and his brothers Chico, Harpo, and Zeppo formed a successful comedy act that eventually led them to Broadway and Hollywood. The Marx Brothers starred in iconic films such as The Cocoanuts, Animal Crackers, Monkey Business, Horse Feathers, Duck Soup, and A Night on the Opera. In 1947, Groucho found further success as the host of the popular radio quiz show You Bet Your Life, which eventually moved to television, airing until 1961. Groucho also appeared in several movies without his brothers and made a comeback in the 1970s with appearances on award shows and performances. Throughout his life, Groucho remained a beloved figure in American comedy and entertainment. -

Sources: +

+

Performers: Groucho Marx, George Fenneman

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/arch-obolers-plays.html b/site/partial/series/arch-obolers-plays.html index c5751d9..7dd688d 100644 --- a/site/partial/series/arch-obolers-plays.html +++ b/site/partial/series/arch-obolers-plays.html @@ -522,9 +522,12 @@

Arch Oboler's Plays is a dramatic anthology series in which each episode explores the terrors and monsters within the human psyche. The show adheres to a stream-of-consciousness style that established radio as a viable new art form. Created, produced, directed, and written by Arch Oboler, the series features leading film actors, such as Ingrid Bergman, James Cagney, Joan Crawford, and Katharine Hepburn, who bring the compelling stories to life. The Bathysphere, an episode from November 18, 1939, was inducted into the National Recording Registry of the Library of Congress in 2020 for its cultural, historical, and aesthetic significance.

The show aired on the NBC network from March 25, 1939, to March 23, 1940, and was later revived for a sustaining summer run from April 5, 1945, to October 11, 1945, on the Mutual radio network. Arch Oboler reused some of the scripts from Arch Oboler's Plays in his later series Everyman's Theater. As the first writer accorded name-in-the-title status, Oboler was known for his eccentric and unique approach to storytelling. In addition to his radio work, Oboler was an ardent anti-Nazi and used his writing talents to instill hatred of the enemy during WWII through various war propaganda plays. -

Sources: +

+

Performers: Ingrid Bergman, Gloria Blondell, Eddie Cantor, James Cagney, Ronald Colman, Joan Crawford, Greer Garson, Edmund Gwenn, Van Heflin, Katharine Hepburn, Elsa Lanchester, Peter Lorre, Frank Lovejoy, Raymond Massey, Burgess Meredith, Paul Muni, Alla Nazimova, Edmond O'Brien, Geraldine Page, Hester Sondergaard, Franchot Tone, George Zucco

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/archie-andrews.html b/site/partial/series/archie-andrews.html index 0b12e97..e1d2be7 100644 --- a/site/partial/series/archie-andrews.html +++ b/site/partial/series/archie-andrews.html @@ -468,9 +468,11 @@

Archie Andrews was a teenage situation comedy radio show based on the popular comic strip created by Bob Montana. The show aimed to attract a teenage audience by creating a situational comedy format specifically for them, even including them in the live audience during broadcasts. Set in a classic American suburban environment, the show followed Archie and his friends at home and at school, featuring well-known comic book characters such as Archie's best friend Jughead, Veronica, Reggie, and Betty, who had an on-and-off romantic relationship with Archie. Archie's parents and Mr. Weatherbee, Archie's high school principal, were also frequently featured in the show. The atmosphere at the live recordings was characterized by the enthusiastic energy of its teenage audience.

The radio show was broadcast between 1943 and 1953 on various radio networks. While the exact number of episodes aired is not known, some episodes survive to this day. The popularity of the Archie Andrews radio show and comic strip eventually led to TV shows and other media formats featuring the characters. The show was sponsored by notable advertisers and featured talented actors, helping it to maintain its following throughout its run. Similar family comedy radio shows included Our Miss Brooks, Blondie, Aldrich Family, Ozzie and Harriet, The Harold Peary Show, Life of Riley, and The Phil Harris and Alice Faye Show. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/barrie-craig-confidential-investigator.html b/site/partial/series/barrie-craig-confidential-investigator.html index 69200f0..6b0b320 100644 --- a/site/partial/series/barrie-craig-confidential-investigator.html +++ b/site/partial/series/barrie-craig-confidential-investigator.html @@ -549,9 +549,12 @@

Barrie Craig, Confidential Investigator is a detective radio drama featuring the character Barrie Craig, a New York eye. The series follows Craig as he works alone, solving cases with efficiency and fearlessness. Set in his Madison Avenue office, the stories present a standard PI kind of fare, with Craig—an unconventional personality in the world of private investigators—being the "go-to guy" when one can't go to the cops. The series separates itself from its contemporaries by veering away from the traditional hardened detective stereotype, offering listeners a more easy-going protagonist who still manages to get the job done.

Initially airing on NBC radio, the show had two separate versions broadcast from both the east and west coasts from October 3, 1951, to June 30, 1955. The series attracted only occasional sponsors, which led to the show being mostly sustained by the network. Barrie Craig, Confidential Investigator starred William Gargan in the titular role, with Don Pardo as the announcer. Notably, Gargan reprised the role in a failed 1952 TV pilot written and directed by Blake Edwards, subsequently appearing on ABC's Pepsi-Cola Playhouse. Other notable cast members included Ralph Bell, Elspeth Eric, Parker Fennelly, Santos Ortega, Arnold Moss, Parley Baer, Virginia Gregg, and Betty Lou Gerson. -

Sources: +

+

Performers: William Gargan, Ralph Bell, Elspeth Eric, Parker Fennelly, Santos Ortega, Arnold Moss, Parley Baer, Virginia Gregg, Betty Lou Gerson

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/behind-the-mike.html b/site/partial/series/behind-the-mike.html index 982a97f..afd1199 100644 --- a/site/partial/series/behind-the-mike.html +++ b/site/partial/series/behind-the-mike.html @@ -306,9 +306,12 @@

Behind the Mike was a captivating radio show that provided listeners with an exclusive behind-the-scenes view of radio, featuring interviews with well-known personalities, technicians, producers, sound effect artists, musicians, and various other individuals involved in radio production. The show was designed to offer listeners greater insight into their favorite radio personalities, programs, and the people who contributed to the creation of these programs. Radio broadcasting legend Graham McNamee hosted Behind the Mike, allowing listeners to learn the answers to listener-submitted questions about radio production, such as differences between recordings and transcriptions, or information about the first ventriloquist on air.

The show aired on the Blue Network (NBC) from September 15, 1940, to April 19, 1942. During its run, Behind the Mike had 79 episodes, of which only 32 are known to still exist today. After McNamee's death on May 9, 1942, the show's name was changed to "This is the Truth" and later to "Nothing But the Truth," airing under these titles until June 7, 1942. CBS Radio had previously run another program with the title "Behind the Mike" during the 1931-32 season. The series was sustained and aired Sundays at 4:30 p.m. ET. -

Sources: +

+

Performers: Graham McNamee

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/beulah.html b/site/partial/series/beulah.html index af722e8..459d45c 100644 --- a/site/partial/series/beulah.html +++ b/site/partial/series/beulah.html @@ -234,9 +234,12 @@

Beulah is an American situation-comedy series that centers around the character Beulah Brown, a housekeeper and cook for the Henderson family. Beginning as a spin-off from the Fibber McGee and Molly radio series, Beulah is known for her unique ability to solve problems that her employers struggle with, earning her the title "the queen of the kitchen." The series features a cast of diverse characters, including Beulah's handyman boyfriend Bill Jackson, who constantly proposes marriage to her, and Oriole, a befuddled maid who works for the family next door. The comedy in the series is derived from the interactions between these characters and their humorous antics.

The radio show was broadcast on CBS Radio from 1945 to 1954, with the television adaptation airing on ABC Television from 1950 to 1953. A total of 87 episodes of the television program were filmed and produced, with only seven episodes currently known to exist on 16mm format and circulating among collectors. The radio series has fared better in preservation, with 21 episodes and an audition tape surviving to the present day. The Beulah show has a rich history, with four personalities playing the titular character, beginning with the original portrayal by white male actor Marlin Hurt and later transitioning to African-American actresses Hattie McDaniel, Lillian Randolph, and Amanda Randolph. Beulah was notable as the first sitcom to star an African-American actress, and it has been both praised and criticized for its representation of African-American characters. -

Sources: +

+

Performers: Marlin Hurt, Hattie McDaniel, Lillian Randolph, Amanda Randolph, Bob Corley, Ethel Waters, Louise Beavers

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/black-museum.html b/site/partial/series/black-museum.html index 5abff78..c5b331b 100644 --- a/site/partial/series/black-museum.html +++ b/site/partial/series/black-museum.html @@ -477,9 +477,12 @@

The Black Museum is a radio crime-drama program inspired by the Crime Museum at Scotland Yard, the oldest museum in the world dedicated to recording crime. The show, narrated and hosted by Orson Welles, draws on true stories from Scotland Yard's files, with each episode centered around an item or items of evidence in the museum. The series features dramatized tales of brutal murders and vicious crimes, as well as Welles' characteristic narration and closing.

The show first aired in the United States on January 1, 1952, with 39 out of the full 52 syndicated episodes broadcast on Mutual stations. It was later broadcast on Radio Luxembourg starting May 7, 1953, where it was sponsored by cleaning products Dreft and Mirro. The series continued to be offered through syndication in the US on NPR stations through the 1960s, 70s, and 80s, with some episodes also airing on the BBC in England in 1994. Produced by Harry Alan Towers and based on scripts by Ira Marion, with music by Sidney Torch, the museum remains a part of police training despite not being open to the general public. -

Sources: +

+

Performers: Orson Welles, Robert Rietti, Keith Pyott, Joe McCormick, Harp McGuire, Michael York

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/blair-of-the-mounties.html b/site/partial/series/blair-of-the-mounties.html index b0228e4..fab4e12 100644 --- a/site/partial/series/blair-of-the-mounties.html +++ b/site/partial/series/blair-of-the-mounties.html @@ -315,9 +315,12 @@

Blair of the Mounties is a fictional radio series that tells the story of the Royal Northwest Mounted Police in Canada. It follows the adventures of Sgt. Blair, a member of the Northwest Mounted Police, as he solves cases and tracks down criminals. The series is not restricted to Canada, as some episodes feature Blair working in Great Britain as well. While the series has been criticized for being amateurishly written and the character of Blair coming across as stuffy, it remains a notable example of a radio drama focused on the Mounted Police.

The show first aired on January 31st, 1938, and ran for 36 weeks until October 3rd, 1938. A total of 39 episodes were produced by Walter Biddick Co., written by Colonel Rhys Davies, directed by G. Donald Gray, and starred Colonel Rhys Davies as Sgt. Blair and Jack Abbott as the Constable. The show was syndicated to radio stations in the United States, Canada, and Australia, and was available for broadcast as late as 1957. -

Sources: +

+

Performers: Colonel Rhys Davies, Jack Abbott, Jack French

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/blondie.html b/site/partial/series/blondie.html index 7f27511..aa3d1e5 100644 --- a/site/partial/series/blondie.html +++ b/site/partial/series/blondie.html @@ -351,9 +351,12 @@

Blondie is a radio situation comedy adapted from the long-running comic strip by Chic Young. It stars Arthur Lake as Dagwood Bumstead and Penny Singleton as Blondie Bumstead for the majority of its run. The show's premise revolves around the comical misadventures of the Bumstead family and their daily struggles with a demanding boss, nosy neighbors, bills, and the art of building the perfect sandwich. Its tone is light-hearted and humorous, with a touch of zaniness, as the characters often find themselves in chaotic situations.

The radio program was broadcast on several networks from 1939 to 1950, including CBS, NBC Blue, NBC, and ABC. In total, there were 548 episodes produced. The show was also adapted into a series of 28 low-budget films, with Penny Singleton and Arthur Lake reprising their roles. The films were successful and ran from 1938 to 1950. Over the years, Blondie had various notable advertisers and sponsors, including R.J. Reynolds' Camel cigarettes, Colgate-Palmolive's Super Suds, and others. After Penny Singleton left the radio series in 1949, she was replaced by Ann Rutherford, Alice White, and Patricia Van Cleve. Later in 1957, Arthur Lake would return to the role of Dagwood Bumstead in the television series Blondie, this time opposite Pamela Britton as Blondie. -

Sources: +

+

Performers: Arthur Lake, Penny Singleton, Ann Rutherford, Alice White, Patricia Van Cleve, Leone Ledoux

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/bob-and-ray.html b/site/partial/series/bob-and-ray.html index ca09c7d..0b1f9c4 100644 --- a/site/partial/series/bob-and-ray.html +++ b/site/partial/series/bob-and-ray.html @@ -2448,9 +2448,12 @@

Bob and Ray was a radio show featuring the American comedy duo, Bob Elliott and Ray Goulding. The show was known for its off-the-wall, deadpan humor that often satirized the medium in which they were performing, such as conducting radio or television interviews with unconventional dialogue. The duo's humor often included improvised comedy routines, following various comic threads for a few minutes and then abruptly moving on to another topic. Recurring features of the show included soap opera parodies like "The Life and Loves of Linda Lovely" and the pair engaging in impromptu banter with studio musicians.

The radio show, which began on Boston station WHDH in 1946, spanned five decades and aired on various networks such as NBC, CBS, and Mutual. Additionally, it was broadcast on New York City stations WINS, WOR, and WHN, and eventually on National Public Radio until its end in 1987. Bob and Ray saw a total of over 40 years on air and were known for their witty and hilarious skits which usually consisted of ad-libbed or improvised material. Characters like Wally Ballou, Roving Reporter, and skits like "Mr. Trace, Keener than Most Persons" became staples of the show. They also released radio episodes on recordings, and several were later adapted into graphic story form for publication in MAD magazine. Bob and Ray were praised for their unique talents and refreshing humor, often compared to the likes of Vic and Sade and the Marx Brothers. -

Sources: +

+

Performers: Bob Elliott, Ray Goulding

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/bold-venture.html b/site/partial/series/bold-venture.html index 95a6d46..e1e0029 100644 --- a/site/partial/series/bold-venture.html +++ b/site/partial/series/bold-venture.html @@ -531,9 +531,12 @@

Bold Venture was a captivating and thrilling radio series starring the renowned Humphrey Bogart who played the part of Slate Shannon, a hotel owner with a boat called the "Bold Venture." Set in Havana, Cuba, the show followed Slate's adventures as he rescued friends in need, hunted down his enemies, and navigated through modern-day pirates and other tough situations. The sultry Sailor Duval, played by Lauren Bacall, accompanied him in their ventures. Their escapades were accompanied by calypso singer King Moses, played by Jester Hairson, who supplied musical narrative with scripts written by Morton Fine and David Friedkin.

The transcribed syndication ran from 1951 to 1952, premiering on March 26, 1951, and was produced by Ziv Corporation. There were 78 thirty-minute episodes, with 57 of them still known to exist today. The show was later adapted into a television series in 1959, which changed the setting to Trinidad and starred Dane Clark as Slate Shannon, Joan Marshall as Sailor Duval, and Bernie Gozier as King Moses. -

Sources: +

+

Performers: Humphrey Bogart, Lauren Bacall, Jester Hairston

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/boston-blackie.html b/site/partial/series/boston-blackie.html index 4b5316f..964a14d 100644 --- a/site/partial/series/boston-blackie.html +++ b/site/partial/series/boston-blackie.html @@ -1791,9 +1791,12 @@

Boston Blackie is a fictional character that has occupied various positions on both sides of the law. Initially created by author Jack Boyle as a safecracker and criminal, the character evolved into a detective in adaptations for films, radio, and television. The premise of the radio series involves Boston Blackie, an enemy to those who oppose him and a friend to those in need, solving mysteries and inevitably encountering the often-confused Police Inspector Farraday. Throughout the series, a mixture of tension and camaraderie develops between Blackie and Farraday, as they navigate various criminal investigations with the help of Blackie's girlfriend, Mary Wesley, and other characters.

The Boston Blackie radio show aired from June 23, 1944, to October 25, 1950, with over 200 episodes produced during this period. The show initially began on NBC as a summer replacement for The Amos 'n' Andy Show, sponsored by Rinso. Later, the series was syndicated by Frederic W. Ziv to Mutual and other network outlets. The show featured notable actors such as Chester Morris, Richard Kollmar, Maurice Tarplin, and Jan Miner. The series had several sponsors, including Lifebuoy Soap, Champagne Velvet beer, and R&H beer. -

Sources: +

+

Performers: Chester Morris, Richard Kollmar, Lesley Woods, Harlow Wilcox, Maurice Tarplin, Jan Miner

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/box-13.html b/site/partial/series/box-13.html index 4dd1257..48e8770 100644 --- a/site/partial/series/box-13.html +++ b/site/partial/series/box-13.html @@ -486,9 +486,12 @@

Box 13 is a syndicated radio drama that follows the adventures of Dan Holiday, a newspaperman-turned-mystery novelist played by actor Alan Ladd. The show is set around a simple premise: to generate story ideas for his mystery novels, Holiday places an advertisement in the local newspaper that reads, "Adventure wanted, will go anywhere, do anything, Box 13." Each episode deals with the adventures that transpire after Holiday receives a letter and responds to it. Along the way, Holiday solves mysteries, faces dangerous situations, and shares laughs with his secretary, Suzy. The show captures a lighthearted yet thrilling tone and manages to maintain a sense of mystery throughout each episode without relying heavily on grisly murders or hard-boiled detective themes.

A product of Mayfair Productions, Box 13 was aired on the Mutual Broadcasting System, as well as being syndicated. The show ran for 52 episodes between August 1948 and August 1949. Other notable cast members included Sylvia Picker as Suzy, Edmond MacDonald as Lt. Kling, and guest appearances by Betty Lou Gerson, Lurene Tuttle, Alan Reed, Luis Van Rooten, John Beal, and others. The series was produced by Richard Sanville with Alan Ladd as co-producer, and the program was directed by Vern Carstensen. The show's music was created by Rudy Schrager, while the scripts were penned by Russell Hughes. Although Box 13 failed to make the transition to television, it did inspire a comic book series, which was reimagined and published by ComiXology and Red 5 Comics in 2010. -

Sources: +

+

Performers: Alan Ladd, Sylvia Picker, Edmund MacDonald, Betty Lou Gerson, Lurene Tuttle, Alan Reed, Luis Van Rooten, John Beal, Frank Lovejoy

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/bright-star.html b/site/partial/series/bright-star.html index 848df9b..323888e 100644 --- a/site/partial/series/bright-star.html +++ b/site/partial/series/bright-star.html @@ -297,9 +297,12 @@

Bright Star, also known as The Irene Dunne and Fred MacMurray Show, is a charming radio comedy-drama that centers around Susan Armstrong (played by Irene Dunne), the editor of a struggling newspaper called the Hillsdale Morning Star, and George Harvey (played by Fred MacMurray), an idealistic star reporter who often conflicts with his editor over stories. With a delightful rapport between Dunne and MacMurray, both of whom have excellent comedic timing, the show focuses on their attempts to keep the newspaper in business despite facing financial difficulties.

Broadcasted between 1952 and 1953, Bright Star aired a total of 52 episodes that each lasted 30 minutes. The show was syndicated by Ziv and featured announcers Harry von Zell and, later, Wendell Niles. It is worth mentioning that Irene Dunne, best known for her films with Cary Grant, stopped acting in 1952 to focus on her position as alternate U.N. delegate of the General Assembly in 1959, a role given to her by President Eisenhower. Meanwhile, Fred MacMurray gained fame as the patriarch in the TV show "My Three Sons" from 1960 to 1972 and starred in several Disney films. -

Sources: +

+

Performers: Irene Dunne, Fred MacMurray

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/broadway-is-my-beat.html b/site/partial/series/broadway-is-my-beat.html index e20e793..c242db1 100644 --- a/site/partial/series/broadway-is-my-beat.html +++ b/site/partial/series/broadway-is-my-beat.html @@ -1539,9 +1539,12 @@

Broadway is My Beat is a radio crime drama that follows the life of hardened New York City cop, Detective Danny Clover, as he works homicide cases on the iconic "Great White Way." Set in the bustling theater district of Manhattan, from Times Square to Columbus Circle, the show is known for its captivating and gritty portrayal of the city through vivid sound effects and a powerful music score. With a strong focus on the urban streetscape and well-developed characters, the storylines feature dramatic and tense crime scenarios alongside engaging narrative monologues that transport listeners straight into the world of Broadway.

The show initially aired on CBS from February 27, 1949, to August 1, 1954, starting off in New York City with Anthony Ross as Detective Danny Clover, before Larry Thor took over the role and the show moved to Hollywood under producer Elliott Lewis. With its authentic recreation of Manhattan's bustling soundscape, Broadway is My Beat showcased the talents of renowned radio and film actors such as Irene Tedrow, Barney Phillips, Sheldon Leonard, and Martha Wentworth. The series became well-known for its powerful opening theme, "I'll Take Manhattan," and is still remembered as a standout example of crime drama from the golden age of radio. -

Sources: +

+

Performers: Anthony Ross, Larry Thor, Charles Calvert, Jack Kruschen, Irene Tedrow, Barney Phillips, Lamont Johnson, Herb Ellis, Hy Averback, Edgar Barrier, Betty Lou Gerson, Harry Bartell, Sheldon Leonard, Martha Wentworth, Lawrence Dobkin, Mary Jane Croft

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/buck-rogers.html b/site/partial/series/buck-rogers.html index 9520bd2..05c35a1 100644 --- a/site/partial/series/buck-rogers.html +++ b/site/partial/series/buck-rogers.html @@ -126,9 +126,12 @@

Buck Rogers in the 25th Century was a science fiction radio serial and aviation radio series that captured the excitement of the popular novel and comics series Buck Rogers. The show followed the adventures of Buck Rogers, a man from the present day who got trapped in a cave-in and was subjected to a mysterious gas that held him in suspended animation until he was discovered in the 25th century. Resuscitated by the good inventor and scientist Dr. Huer, Buck learns about the incredible technology and ways of life in the future, and sets off on thrilling adventures with Lieutenant Wilma Deering, Dr. Huer's assistant, battling evil forces such as Killer Kane and Ardala Valmar. Dedicated to showcasing the ongoing struggle of good versus evil, Buck Rogers in the 25th Century was a forerunner to many juvenile adventure serials that followed.

The show initially ran from November 7, 1932, to May 22, 1936, on CBS Radio, and returned several times throughout the following years on Mutual Broadcasting System, finally concluding on March 28, 1947. In total, the show aired an estimated 860 episodes, with some episodes available for listening today. Directed by Carlo De Angelo and Jack Johnstone, the show featured varying actors in its starring roles, including Matt Crowley, Curtis Arnall, Carl Frank, and John Larkin as Buck Rogers, as well as Adele Ronson and Edgar Stehli as Wilma Deering and Dr. Huer, respectively. The show was sponsored by well-known brands like Kellogg's, Cocomalt, Cream of Wheat, Popsicles, Fudgsicles, and Creamsicles. Buck Rogers in the 25th Century was not only one of the first science fiction radio shows but also laid a foundation for future serials, such as Tarzan and The Air Adventures of Jimmy Allen. -

Sources: +

+

Performers: Matt Crowley, Curtis Arnall, Carl Frank, John Larkin, Adele Ronson, Edgar Stehli, Jack Roseleigh, Joe Granby, Ronald Liss, Elaine Melchior, William 'Bill' Shelley, Dan Ocko, Arthur Vinton

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/bulldog-drummond.html b/site/partial/series/bulldog-drummond.html index 2962325..0d2c158 100644 --- a/site/partial/series/bulldog-drummond.html +++ b/site/partial/series/bulldog-drummond.html @@ -189,9 +189,12 @@

Bulldog Drummond is a radio crime drama that focuses on the relentless pursuit of criminals by a British investigator nicknamed "Bulldog." Created by British author H.C. McNeile, the character is a polished man-about-town whose hobby is crime detection and the apprehension of criminals. Alongside his sidekick Denny, Captain Hugh Drummond solves various murder cases and deals with a range of underworld characters. The series is known for its brief but evocative opening created by producer-director Himan Brown, which uses sound effects to set a London ambiance.

The show was broadcast from April 13, 1941, until March 28, 1954, airing on the Mutual Broadcasting System in the United States and Canada. Over the years, Drummond was played by several actors, including George Coulouris, Santos Ortega, Ned Wever, and Cedric Hardwicke. The character did not have a wife or ex-army comrades in the radio program as he did in the books, but he retained his butler, Denny. Distribution for the show became syndicated via electrical transcription in 1948, and a new version of Bulldog Drummond was aired in 1953 on Mutual. Despite efforts to revive the program, the final network version was broadcast only between January 3, 1954, and March 28, 1954. -

Sources: +

+

Performers: George Coulouris, Santos Ortega, Ned Wever, Cedric Hardwicke, Everett Sloane, Luis Van Rooten, Rod Hendrickson, Agnes Moorehead, Paul Stewart, Ray Collins, Mercedes McCambridge, Ted Brown, Henry Morgan, Robert Shepard

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/calling-all-cars.html b/site/partial/series/calling-all-cars.html index 73db28f..b139b52 100644 --- a/site/partial/series/calling-all-cars.html +++ b/site/partial/series/calling-all-cars.html @@ -2682,9 +2682,11 @@

Calling All Cars was a radio police drama that featured dramatizations of true crime stories, depicting how each crime was solved and justice served. Episodes were mainly introduced by officers from the Los Angeles Police Department, with Sgt. Jesse Rosenquist, a police dispatcher, as a part of the entire run of the series. The show focused on the tedious routine of tracking down killers and robbers and was described as a crude forerunner of the popular police procedural show, Dragnet.

The show was broadcast from November 29, 1933, to September 8, 1939, and originally aired on the West Coast's Columbia Broadcasting System (CBS) and on the Mutual-Don Lee Network. It was sponsored by the Rio Grande Oil Company, which was part of the Sinclair Oil Corporation. The show only ran in areas where Rio Grande "Cracked" gasoline was sold. Calling All Cars was written and directed by William N. Robson and gained recognition in 1938 when it received the Institute of Audible Arts Trophy for the most consistently excellent program broadcast in the western United States during that year. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/can-you-imagine-that.html b/site/partial/series/can-you-imagine-that.html index 04d9c38..e031ec0 100644 --- a/site/partial/series/can-you-imagine-that.html +++ b/site/partial/series/can-you-imagine-that.html @@ -369,9 +369,11 @@

Can You Imagine That is a captivating radio show that shares bizarre and astounding stories taken from newspaper columns from across the country. Combining elements of docudrama sketches and vignettes about unusual news items and historical curiosities, the show aims to give listeners something intriguing to think about. Some of the peculiar stories dramatized on the show include incidents of animal attacks, elderly people growing new teeth, and ancient cultural practices. The show's tone is lighter and less extreme than similar programs like Ripley's Believe It or Not, making it an excellent source of entertaining facts and conversation starters.

Broadcast during the golden age of radio, Can You Imagine That aired on multiple radio networks and showcased a variety of fascinating tales. The show has numerous episodes, and many of them still exist today. While the program did not have any related television shows or other media formats, it did share some similarities with other radio programs such as The Passing Parade, Ripley's One Minute Shorts, Strange As It Seems, and Incredible But True. The show captured the interest of its listeners by presenting extraordinary accounts and facts, and it may have even had notable advertisers and sponsors during its time on the air. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/candy-matson-yukon-2-8209.html b/site/partial/series/candy-matson-yukon-2-8209.html index 64d2afa..6a1d021 100644 --- a/site/partial/series/candy-matson-yukon-2-8209.html +++ b/site/partial/series/candy-matson-yukon-2-8209.html @@ -144,9 +144,12 @@

Candy Matson, YUkon 2-8209 was a detective drama radio show that featured private investigator Candy Matson, known for her sassiness and fearlessness. Set in San Francisco, the show's premise revolved around Matson solving cases in real Bay Area locations, often ahead of her love interest, Lt. Ray Mallard. The show opened with a ringing telephone and the main character answering it with "Candy Matson, YU 2-8209," followed by the organ playing the theme song, "Candy." The show's tone was marked by a blend of suspense, humor, and clever, caustic responses to threats from the unflappable, blonde sleuth.

Candy Matson, YUkon 2-8209 first aired on the NBC West Coast in March 1949 and ran until May 1951. It was created by Monty Masters and starred his wife, Natalie Parks. Candy Matson was popular in San Francisco, even receiving the local newspaper's "Favorite Program Award" in 1950. However, the show failed to secure a sponsor throughout its run. Only 14 of the 92 episodes are known to still exist today, with additional episodes preserved in audition shows and radio theater adaptations by producer Joe Bevilacqua. -

Sources: +

+

Performers: Natalie Parks, Henry Leff, Jack Thomas, Helen Kleeb, John Grober, Mary Milford, Hal Burdick, Dudley Manlove

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/case-dismissed.html b/site/partial/series/case-dismissed.html index b9d834f..ef47dbf 100644 --- a/site/partial/series/case-dismissed.html +++ b/site/partial/series/case-dismissed.html @@ -126,9 +126,12 @@

Case Dismissed is a radio show that shares stories of everyday events in the context of our legal rights and the challenges faced when trying to preserve and protect them. The program highlights how fragile liberty and justice can be through engaging stories of criminal liability, legal wills, buying on installment, and leasing an apartment, as well as the vital role played by honest lawyers in helping navigate the legal system. Although the acting may be considered dated by today's standards, the show still manages to achieve the desired effect through well-written stories, creating an interesting and educational listening experience.

The show originally aired on WMAQ Chicago, an NBC station, and was broadcasted between January 30, 1954 and April 24, 1954. During this time, 13 episodes were produced, with 12 currently available. Presented by the Chicago Bar Association, Case Dismissed features a host of local Chicago talent led by Dean of the Loyola University Law School, John Fitzgerald. While the dramas are based on Illinois law, they still offer valuable lessons that can be applied more broadly. The show serves as a useful resource for those interested in the complexities of legal matters and the lasting impact these can have on everyday life. -

Sources: +

+

Performers: Unknown

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/casey-crime-photographer.html b/site/partial/series/casey-crime-photographer.html index 8bdd2bc..9571849 100644 --- a/site/partial/series/casey-crime-photographer.html +++ b/site/partial/series/casey-crime-photographer.html @@ -711,9 +711,12 @@

Casey, Crime Photographer is a mystery and adventure radio series focused on the life of the titular character, a crime photographer for the fictional Morning Express newspaper. With the help of reporter Ann Williams, Casey hunts down criminals and solves various crimes. Often, a picture snapped at a crime scene leads Casey to play detective, with his police chief friend, Captain Logan, assisting them in each week's episode. Between assignments, crime investigators Casey and Ann wind down at their favorite tavern, The Blue Note. The show is known for its blend of action and jazz with a backdrop of crime-investigator suspense.

The series initially aired from July 7, 1943 until April 22, 1955, broadcasting a total of 431 episodes across various radio networks. Notable people involved in the show's production included Matt Crowley, Staats Cotsworth, and Jan Miner, among others. The radio show had several sponsors, such as Anchor-Hocking glass, Toni home permanents, Toni Creme Shampoo, and Philip Morris cigarettes. In addition to its radio format, Casey, Crime Photographer branched out into a media franchise, spanning pulp magazines, novels, comic books, films, television, and legitimate theatre. -

Sources: +

+

Performers: Matt Crowley, Jim Backus, Staats Cotsworth, Jan Miner, Lesley Woods, John Gibson, Tony Marvin

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/cbs-radio-mystery-theater.html b/site/partial/series/cbs-radio-mystery-theater.html index 5e152c6..875c431 100644 --- a/site/partial/series/cbs-radio-mystery-theater.html +++ b/site/partial/series/cbs-radio-mystery-theater.html @@ -12609,9 +12609,12 @@

CBS Radio Mystery Theater was a radio drama series that encompassed various genres, including horror, science fiction, historical drama, westerns, and comedy. The format of the show was similar to classic radio programs like The Mysterious Traveler and The Whistler, with episodes being introduced by host E. G. Marshall. As with prior Inner Sanctum Mysteries, each episode began and ended with the sound of a creaking door, coupled with Marshall's greeting and sign-off. The series' theme music featured a series of spooky and eerie sounds played by various instruments. Throughout its run, CBS Radio Mystery Theater boasted several notable actors and introduced a new generation of listeners to the world of radio drama.

The show aired on CBS Radio Network affiliates from 1974 to 1982 and was later repeated by the NPR satellite feed in the early 2000s. There were 1,399 original episodes with a total number of broadcasts, including repeats, of 2,969. Each episode was allotted an hour of airtime, typically running for around 45 minutes. E. G. Marshall hosted the show from January 1974 until February 1, 1982, when actress Tammy Grimes took over for the remainder of the series' final season. Himan Brown re-recorded E. G. Marshall's original host segments for NPR's broadcast of the show in the 2000s. -

Sources: +

+

Performers: E. G. Marshall, Tammy Grimes

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/cbs-radio-workshop.html b/site/partial/series/cbs-radio-workshop.html index 59fcd4c..f76603f 100644 --- a/site/partial/series/cbs-radio-workshop.html +++ b/site/partial/series/cbs-radio-workshop.html @@ -792,9 +792,11 @@

CBS Radio Workshop was a revival of the Columbia Workshop series from the late thirties, serving as an experimental platform for actors, writers, and technicians to produce scripts that sponsors might deem too risky. The show was known for its cutting-edge writing, music, and sound, garnering appreciation from radio personnel and listeners alike. The series alternated between the west and east coast production centers and was dedicated to man's imagination, as it explored the theater of the mind.

The series aired from January 27, 1956, until September 22, 1957, on CBS, and all 86 episodes still exist today. The revival was initiated by William Froug, a CBS vice president, who pitched the idea to Howard Barnes. Their first program was an adaptation of Aldous Huxley's "Brave New World," narrated by Huxley himself and announced by William Conrad. The CBS Radio Workshop was one of the last attempts of American network radio to hold onto radio demographics after the emergence of television. Some notable writers whose work was adapted for the series included John Cheever, Robert A. Heinlein, Sinclair Lewis, H. L. Mencken, Edgar Allan Poe, Christopher Isherwood, Frederik Pohl, James Thurber, Mark Twain, and Thomas Wolfe. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/challenge-of-the-yukon.html b/site/partial/series/challenge-of-the-yukon.html index b714830..d064aca 100644 --- a/site/partial/series/challenge-of-the-yukon.html +++ b/site/partial/series/challenge-of-the-yukon.html @@ -5679,9 +5679,12 @@

Challenge of the Yukon was a radio series based on Detroit's station WXYZ that explored the adventures of Sergeant William Preston of the Northwest Mounted Police and his lead sled dog, Yukon King, as they fought wrongdoers in the Northern wilderness during the Gold Rush of the 1890s. The program adopted an adventure format, focusing on the heroics of a working dog and the characters' efforts to help injured trappers, smuggle trackers and protect cabin dwellers from wolverines. Yukon King was a critical character in the show, helping to drive the premise and action of the storyline.

The radio show began as a 15-minute serial, airing locally from 1938 until May 28, 1947. After acquiring Quaker Oats as a sponsor, the series expanded to a half-hour format and moved to network programming. Challenge of the Yukon aired on ABC from June 12, 1947 to December 30, 1949 and later on The Mutual Broadcasting System from January 2, 1950 until its last episode on June 9, 1955. The title changed from Challenge of the Yukon to Sergeant Preston of the Yukon in November 1951, and that name remained until the end of the series and transitioned into television. -

Sources: +

+

Performers: Richard Simmons, Brace Beemer, Paul Sutton

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/charlie-chan.html b/site/partial/series/charlie-chan.html index 9d632b6..8c12e3f 100644 --- a/site/partial/series/charlie-chan.html +++ b/site/partial/series/charlie-chan.html @@ -486,9 +486,12 @@

Charlie Chan is a radio show centered around a fictional Hawaiian police detective created by author Earl Derr Biggers. The show features Detective Chan, a benevolent and heroic Chinese-American who was developed as an alternative to the negative and clichéd portrayals of East Asians in Hollywood in the early 20th century. Many episodes showcase Chan traveling around the world solving mysteries and uncovering criminals. The character carries a reputation for his wit, intelligence, and wisdom, which helped counteract and challenge existing Asian stereotypes.

The detective serial aired in the late 1940s and gained popularity due to the Charlie Chan film adaptations that were also in circulation, with more than 40 films made between the 1930s and 1949. All the movies starred non-Chinese actors as Charlie. Unfortunately, the number of Charlie Chan radio serial recordings is limited, with the majority believed to be lost. Although the complete storylines are incomplete, the existing episode recordings still offer a glimpse into the unique and mysterious world of Detective Charlie Chan. -

Sources: +

+

Performers: Warner Oland, Manuel Arbó, Sidney Toler, Roland Winters, Ross Martin, Peter Ustinov

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/chick-carter-boy-detective.html b/site/partial/series/chick-carter-boy-detective.html index fce4b5e..85500f6 100644 --- a/site/partial/series/chick-carter-boy-detective.html +++ b/site/partial/series/chick-carter-boy-detective.html @@ -36,9 +36,12 @@

Chick Carter, Boy Detective is an American radio crime drama that centers on the character Chickering "Chick" Carter, who is the adopted son of and assistant to Nick Carter from Nick Carter, Master Detective. As a spinoff of the elder Carter's show, episodes of this program typically feature cliffhanger endings, enticing young listeners to tune in for the next installment. While the show is primarily aimed at a younger audience, both the Chick Carter and Nick Carter series manage to keep fans of all ages engrossed in their crime-solving adventures.

The show aired on the Mutual Broadcasting System from July 5, 1943 to July 6, 1945, with a total of 304 episodes. Leon Janney initially played Chick Carter before being replaced by Bill Lipton on July 3, 1944. The show was produced by Charles Michelson and directed by Fritz Block, who also contributed as a writer along with Walter B. Gibson, Ed Gruskin, and Nancy Webb. Chick Carter, Boy Detective later became the basis for a film serial called Chick Carter, Detective in 1946 and a comic strip that ran in Shadow Comics Magazine. -

Sources: +

+

Performers: Bill Lipton, Leon Janney, Jean McCoy, Joanne McCoy, Gilbert Mack, Bill Griffis, Stefan Schnabel, Ken Powell

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/classic-baseball-mlb.html b/site/partial/series/classic-baseball-mlb.html index d01d47b..8e7deae 100644 --- a/site/partial/series/classic-baseball-mlb.html +++ b/site/partial/series/classic-baseball-mlb.html @@ -3114,9 +3114,11 @@

Major League Baseball (MLB) broadcasts have been an essential part of American culture for nearly a century, connecting fans with their beloved teams no matter where they are. Beginning with the advent of radio broadcasting in the early 20th century, MLB games were soon aired across the nation, providing die-hard fans and casual listeners alike with the opportunity to join in the excitement of the games. Radio broadcasts not only brought baseball into homes, bars, and workplaces, but they also shaped the way society engaged with the sport. These broadcasts have been a unifying force for generations, creating a shared experience for listeners and fostering a sense of community amongst fans from diverse backgrounds.

MLB's foray into radio broadcasting began in 1921 when KDKA in Pittsburgh aired the first ever live broadcast of a professional baseball game on August 5, featuring the Pittsburgh Pirates and the Philadelphia Phillies. Graham McNamee, one of the early pioneers of sports broadcasting, made a lasting impression with his play-by-play commentary style and powerful, engaging voice. His influence helped establish baseball as a pervasive presence on America's airwaves. Other legendary commentators such as Mel Allen, Vin Scully, and Ernie Harwell would follow, narrating unforgettable games like Don Larsen's perfect game in the 1956 World Series or Hank Aaron's record-breaking 715th home run in 1974. The New York Yankees and Brooklyn Dodgers utilized radio to build strong fan bases and ultimately dominate 20th-century baseball. Radio broadcasts have been a staple of MLB history, commemorating monumental achievements, extraordinary teams, and unforgettable games that have shaped American cultural memory. -

Sources: +

+

Sources: sabr.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/claudia.html b/site/partial/series/claudia.html index 74d53ba..3ca247b 100644 --- a/site/partial/series/claudia.html +++ b/site/partial/series/claudia.html @@ -3510,9 +3510,12 @@

Claudia, also known as Claudia and David, is a radio soap opera that centers on the lives of newlyweds David and Claudia Naughton. The show explores the challenges and successes of an average newly-married couple, touching on themes such as the need for thrift, dealing with an overbearing mother-in-law, and the charming little moments that make up everyday life. The premise originated from a series of short stories written by Rose Franken and William Brown Meloney published in Redbook magazine. The characters of Claudia and David were brought to life by Patricia Ryan and Richard Kollmar in the initial adaptation, followed by Kathryn Bard and Paul Crabtree in a subsequent version sponsored by Coca-Cola.

The show was first broadcast on CBS between July 4th, 1941 and September 26th, 1941, followed by a syndicated version in 1947. The original short stories that inspired the show were later compiled and adapted into a pair of RKO films titled Claudia (1943) and Claudia and David (1946), which starred Robert Young and Dorothy McGuire. The success of these films led to Coca-Cola sponsoring a 15-minute radio program for the 1947-1948 season. Additionally, the storyline of Claudia and David inspired two TV movies in the late fifties and British and German television adaptations. -

Sources: +

+

Performers: Patricia Ryan, Richard Kollmar, Kathryn Bard, Paul Crabtree

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/cloak-and-dagger.html b/site/partial/series/cloak-and-dagger.html index d8ad0ef..d6bd393 100644 --- a/site/partial/series/cloak-and-dagger.html +++ b/site/partial/series/cloak-and-dagger.html @@ -216,9 +216,12 @@

Cloak and Dagger is a suspenseful radio series that aired on the NBC network, focusing on the daring missions of OSS agents during World War II. These agents were sent behind enemy lines, fully aware that they might not make it back alive. The show's episodes told gripping stories of patriotism, betrayal, triumph, tragedy, and failure, often with unexpected and dramatic endings. Based on the 1946 book "Cloak and Dagger: The Secret Story of the OSS" by Corey Ford and Alastair MacBain, the show captivated audiences with its thrilling and intense storytelling, evoking the perils and sacrifices of the agents who risked their lives for their country. The theme music set the tone, akin to that of Tales of the Texas Rangers, while the cast brought to life the complex and intriguing characters.

Broadcast during 1950, Cloak and Dagger aired for 22 episodes on Sundays, later switching to Fridays. Directed by Sherman Marks, the series featured a talented cast, including Raymond Edward Johnson as The Hungarian Giant and Gilbert Mack as Impy the Midget, as well as other notable actors from the New York radio scene. The show was based on true stories from the Office of Strategic Services, bringing an added layer of authenticity and intrigue to the gripping tales. Despite its relatively short run, Cloak and Dagger left a lasting impression in the world of radio dramas and remains a testament to the bravery and sacrifice of the OSS agents during World War II. -

Sources: +

+

Performers: Raymond Edward Johnson, Everett Sloane, Jackson Beck, Virginia Payne, Joseph Julian, Jan Miner, Les Tremayne, Maurice Tarplin, Boris Aplon, Martin Balsam

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/club-car-special.html b/site/partial/series/club-car-special.html index a8988f5..826a59c 100644 --- a/site/partial/series/club-car-special.html +++ b/site/partial/series/club-car-special.html @@ -108,9 +108,11 @@

Club Car Special is a radio show based on the March of Events and City Life Section of the Hearst Sunday newspapers, featuring the works of America's foremost humorists such as O.O. McKentyre, Will Rogers, George Eads, Stan Hilman, Arthur 'Bugs' Bayer, Milt Gross, Damon Runyon, and many others. The program invites listeners to join in for a lark and a laugh, offering a more relaxed and enjoyable travel experience compared to the hustle and bustle of modern transportation. The show starts with a sketch dramatizing a cartoon, followed by a short review of some humorous articles by Hearst's beloved writers, providing the perfect opportunity for listeners to relax and enjoy a drink while they explore the content of the upcoming Sunday newspaper.

The Club Car Special was presented by the Hearst Newspaper Syndicate and aimed to provide listeners with a teaser of the upcoming Sunday’s Newspaper inserts during the mid-week in a 15-minute format. While most reviewers believe that the main purpose of the program was to sell Sunday Newspapers, it is thought that its true purpose might have been to allow parents to enjoy parts of the Sunday paper before their children could take out all of the fun sections. Although details about the show's original air dates, broadcast networks, and episode count are not provided, Club Car Special stands as a unique and entertaining audio experience that takes listeners back to a simpler, more relaxed time in radio history. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/comic-weekly-man.html b/site/partial/series/comic-weekly-man.html index da71a63..32508c3 100644 --- a/site/partial/series/comic-weekly-man.html +++ b/site/partial/series/comic-weekly-man.html @@ -1098,9 +1098,12 @@

Comic Weekly Man was a unique radio show that captured the hearts of both children and adults through its dramatic readings of Sunday comic strips. The show's charming host, the Comic Weekly Man, would read a variety of popular comic strips such as Blondie, Beetle Bailey, Hi and Lois, and many others, bringing the characters to life with the help of music and sound effects. The show allowed listeners to immerse themselves in the stories, and many avid fans would follow along with their own print copies of the comics in hand.

The show aired from 1947 to 1954. The Comic Weekly Man was initially portrayed by an unnamed actor, but the role was later taken on by Lon Clark. During its run, the show featured readings of well-known comic strips such as Flash Gordon, Roy Rogers, Scamp and the Paint, and Little Iodine, among others, creating a memorable and nostalgic experience for many listeners. -

Sources: +

+

Performers: Lon Clark

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/command-performance.html b/site/partial/series/command-performance.html index c562122..7bee957 100644 --- a/site/partial/series/command-performance.html +++ b/site/partial/series/command-performance.html @@ -2106,9 +2106,12 @@

Command Performance was a radio show that aired from 1942 to 1949, created to entertain and lift the spirits of US Armed Forces personnel during World War II. Broadcast on the Armed Forces Radio Network, the program featured talented and well-known performers like Bing Crosby, Jack Benny, and Frank Sinatra. Soldiers would send in requests for specific performers or sounds they wanted to hear, creating a unique connection between the stars and the troops. The show was typically recorded in Hollywood, California, and took on a humorous and light-hearted tone to help boost the morale of those fighting overseas.

The show's first broadcast took place on March 1, 1942, and was created under the Office of War Information. The success of Command Performance led to the establishment of the Armed Forces Radio Service in May 1942. Only a few episodes aired on domestic US stations, with most of the shows being transmitted by shortwave to overseas troops. During its run, a total of 415 episodes were produced, with top performers often volunteering their talents to support the war effort. In 1949, the show ended as a result of budget cuts implemented by the Secretary of Defense. -

Sources: +

+

Performers: Jane Russell, Bob Hope, Major Meredith Willson, Bing Crosby, Jack Benny, Frank Sinatra, Fred Allen, Ginger Rogers, Judy Garland, Lena Horne, The Andrews Sisters, Orson Welles, Ann Miller, Carole Landis, Lucille Ball, Errol Flynn

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/complete-broadcast-day-d-day.html b/site/partial/series/complete-broadcast-day-d-day.html index 2871f85..94662eb 100644 --- a/site/partial/series/complete-broadcast-day-d-day.html +++ b/site/partial/series/complete-broadcast-day-d-day.html @@ -234,9 +234,11 @@

CBS Complete Broadcast Day (1944) is centered around CBS's radio coverage of the significant event, D-Day, in which U.S. and allied troops launched a surprise invasion on the Nazi-occupied shores of Normandy on June 6th, 1944. The radio show captures the narrative, action, and drama of the historic day as 12,000 British and American airplanes led the attack, supported by thousands of paratroopers and forces arriving via sea. The successful battle marked a turning point in favor of the allies and the liberation of Europe in World War II.

The collection constitutes broadcasts from almost the entire 24-hour day of June 6th, 1944, and provides valuable insight into the events as they unfolded. Notable related radio broadcasts include the complete coverage of the 1939 invasion of Poland by Germany, the 1941 attack on Pearl Harbor, and NBC Coverage WEAF's 12-hour coverage of the August 10, 1945 Atomic Bombing of Nagasaki. These broadcasts serve as critical historical documents, capturing the emotions, reactions, and experiences of those who lived through these monumental moments in history. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/crazy-hillbillies.html b/site/partial/series/crazy-hillbillies.html index 893d174..248fa81 100644 --- a/site/partial/series/crazy-hillbillies.html +++ b/site/partial/series/crazy-hillbillies.html @@ -126,9 +126,11 @@

Crazy Hillbillies is a 1930s radio show that revolves around the residents of Mineral Wells, Texas, who experienced the laxative effects of the minerals in their local drinking water. With its origins in New York City, the show features "Old Timey" music, a precursor to Bluegrass which combines folk music from diverse origins such as the British Isles, Europe, and Africa. The program's distinct sound is characterized by one instrument playing the melody accompanied by other instruments and sometimes a harmonica. As Bluegrass gained popularity in urban areas, it showcased more improvisation and each instrument’s treatment of the melody in turn.

Broadcasted in the 1930s, the Crazy Hillbilly Show was initially sponsored by Crazy Water Hotel, taking advantage of the show's popularity on a Dallas radio station. Eventually, the program spread its advertisements to a pirate radio station with a powerful transmitter just across the Mexican Border, allowing listeners as far away as Hawaii. However, when the great depression hit, travel to health spas declined, and the focus shifted to selling boiled-down mineral salts that could be reconstituted using tap water. Though the claims made by the Collins brothers, the creators of the show, were not overtly fraudulent, they were eventually lumped into the same category as other patent medicine salesmen when federal regulations were enacted. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/crazy-water-crystal-program.html b/site/partial/series/crazy-water-crystal-program.html index 102397a..4bcf341 100644 --- a/site/partial/series/crazy-water-crystal-program.html +++ b/site/partial/series/crazy-water-crystal-program.html @@ -63,9 +63,11 @@

The Crazy Water Crystal Program was a unique 15-minute radio show that combined advertising with entertainment, specifically promoting an elixir made from the residue of the Crazy Well in Mineral Wells, Texas. The radio show treated its listeners to diverse early country-western and bluegrass music performances, earning its place as a significant player in broadcasting within the genre. Set in the lobby of the Crazy Water Hotel, the show featured various country and hillbilly musical groups to entertain listeners while also promoting the supposed health benefits of the Crazy Water Crystal elixir.

Broadcast between 1935 and 1940, the Crazy Water Crystal Program was aired both regionally and on the NBC networks, with many episodes still available today. The show played a role in boosting the tourist industry in Mineral Wells, Texas, as the local legend claimed that a mentally ill woman was cured after drinking from the Crazy Spring. The program featured the "Crazy Gang", who would explain how to reconstitute the elixir from the Crazy Water Crystals with tap water, providing alleged health benefits. Notably, actress Mary Martin, a Weatherford, Texas native, appeared in Crazy shows before achieving Broadway and Hollywood fame. The legacy of the Crazy Water Crystal Program can still be seen today, with a large Crazy Water Crystal sign displayed during the 1992 opening of the Grand Ole Opry and a photo of Hank Snow singing on the show exhibited in a museum. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/crime-and-peter-chambers.html b/site/partial/series/crime-and-peter-chambers.html index 91ff90f..bf6bc54 100644 --- a/site/partial/series/crime-and-peter-chambers.html +++ b/site/partial/series/crime-and-peter-chambers.html @@ -207,9 +207,12 @@

Crime and Peter Chambers is a detective radio program centered around a private eye named Peter Chambers, played by Dane Clark, who often collaborated with the police department in solving crimes. His counterpart at the NYPD was Lt. Parker, portrayed by Bill Zuckert. The show was based on the character created by Henry Kane, who authored eight Peter Chambers novels before the series came to radio, and Kane also wrote the scripts for the radio show adaptation. The series was known for its glib dialogue and focused on the protagonist's crime-solving abilities while also dabbling in his encounters with women.

The show was broadcast from April 6, 1954, to September 7, 1954, on the NBC radio network. A total of 21 episodes are available from the series. Notable actors involved in the production include Bill Zuckert, who later guest-starred in 1970s shows like The Mary Tyler Moore Show and the Partridge Family. The show's director was Fred Weihe, and the creator, writer, and producer of the series was Henry Kane. Crime and Peter Chambers did not have any known adaptations for television or other media formats. -

Sources: +

+

Performers: Dane Clark, Bill Zuckert, Fran Carlon, Roger DeKoven, William Griffis, Leon Janney, Bryna Raeburn, Elaine Rost, Everett Sloane, Edgar Stehli, Evelyn Varden, Patricia Wheel, Lesley Woods, Lawson Zerbe

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/crime-classics.html b/site/partial/series/crime-classics.html index 80c9768..3cea251 100644 --- a/site/partial/series/crime-classics.html +++ b/site/partial/series/crime-classics.html @@ -468,9 +468,12 @@

Crime Classics was a radio series that delved into true crime stories from the records and newspapers of various lands and times. The show's host, Mr. Thomas Hyland, was played by Lou Merrill, who portrayed the character as a measured and mild-mannered lecturer. Each episode was based on a true story that was meticulously researched and presented with sophistication and mood, supported by sensitive orchestral scores composed by Bernard Herrmann and tasteful sound effects. The show stood out for its wry, cool-blooded tone and its ability to bring out interesting background details in historical crimes.

The show aired from September 30, 1953, to June 30, 1954, on CBS Radio, with a total of 52 episodes. Crime Classics was produced and directed by Elliott Lewis, a prolific actor, producer, and director known for his work on Suspense, Broadway is My Beat, and On Stage. Writers Morton Fine and David Friedkin were responsible for the show's well-researched scripts. The show is considered a good companion to other historically-oriented radio shows such as Cavalcade of America, You Are There, and The American Trail. -

Sources: +

+

Performers: Lou Merrill

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/cruise-of-the-poll-parrot.html b/site/partial/series/cruise-of-the-poll-parrot.html index 952fcbe..bd5d734 100644 --- a/site/partial/series/cruise-of-the-poll-parrot.html +++ b/site/partial/series/cruise-of-the-poll-parrot.html @@ -369,9 +369,12 @@

Cruise of the Poll Parrot is an adventure and mystery radio serial centered around a whaling voyage from New Bedford in 1858. The story follows young skipper Roy Dalton and his crew as they embark on a journey aboard the ship Poll Parrot, named for its mascot, a wise parrot also named Poll. The show is filled with excitement and intrigue, as well as educational information about the whaling industry and maritime history. Characters include the ship's owner, Ezra Grange; his little sister Sue and her friend Johnny Robbins; first mate George Wainwright; a one-legged sailor named Old Dickson; a mute crew member named Red Mahooley; shipkeeper Breckenridge; and an agent for another shipping company, El Testi.

The show aired from 1937 and was syndicated as an advertisement for the International Shoe Company's Poll Parrot Shoes, catering to children. It was sold in blocks of 13, 26, or all 39 episodes, with each part having a self-contained storyline. The series exponentially boosted shoe sales, and to this day, three complete blocks of the show still exist. Marvin Miller, who played the main character Captain Roy Dalton, went on to have a successful career in radio and film, even appearing in the 1950s TV series "The Millionaire." The show was primarily intended for local shoe stores to buy advertising time, adding further appeal to its target audience. -

Sources: +

+

Performers: Marvin Miller

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/danger-dr-danfield.html b/site/partial/series/danger-dr-danfield.html index e994cfb..165bb42 100644 --- a/site/partial/series/danger-dr-danfield.html +++ b/site/partial/series/danger-dr-danfield.html @@ -252,9 +252,12 @@

Danger, Dr. Danfield is a detective melodrama that features the story of Dr. Daniel Danfield, an obnoxious, unlicensed private investigator and criminal psychologist. The show follows a formula, with crimes being committed in the first third of the program, Dr. Danfield solving them in the second third, and then explaining the solution to someone (usually his secretary, Rusty Fairfax) in the conclusion. The show is most similar to Nick Carter, Master Detective; Casey, Crime Photographer; and The Falcon but leans more towards a lighter and less demanding approach in terms of emotions and intellect, making it suitable for drive-time or casual listening.

The show aired 26 episodes, beginning on August 18, 1946, and running through April 13, 1947, on the ABC network. All episodes are available and starred Michael Dunn as Dr. Danfield, alongside JoAnne Johnson as Rusty Fairfax. Danger, Dr. Danfield was written by Ralph Wilkinson and produced by Wally Ramsey. Despite featuring some of the worst acting and writing of any detective show, the show was syndicated for several years after its original run. -

Sources: +

+

Performers: Michael Dunn, JoAnne Johnson

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dangerous-assignment.html b/site/partial/series/dangerous-assignment.html index 096c047..f0e661f 100644 --- a/site/partial/series/dangerous-assignment.html +++ b/site/partial/series/dangerous-assignment.html @@ -900,9 +900,12 @@

Dangerous Assignment is a radio series that follows the intriguing adventures of Steve Mitchell, an international operative with one goal: to get in and out of danger. Played by film actor Brian Donlevy, Mitchell is given dangerous assignments by the Commissioner, a secretive taskmaster portrayed by Herb Butterfield. The show features exotic locations and solid acting by its supporting characters, with Donlevy's world-weary and wary tone adding to the show's suspenseful atmosphere. Dangerous Assignment's radio punch appeals to fans of tough-guy characters navigating through thrilling predicaments.

Broadcast in the United States from 1949 to 1953, Dangerous Assignment aired on the NBC network and featured both a radio drama and a syndicated television series. The radio show aired a total of 167 episodes, with Brian Donlevy as the protagonist and narrator. Additionally, the show had an Australian radio series during 1954-1956, remaking the original American radio scripts. Notable sponsors for the American series included the Ford Motor Company, Wheaties cereal, Anacin painkiller, Chesterfield cigarettes, and RCA Victor record label. -

Sources: +

+

Performers: Brian Donlevy, Herb Butterfield, Betty Moran

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dangerously-yours.html b/site/partial/series/dangerously-yours.html index a0a170f..2a37dee 100644 --- a/site/partial/series/dangerously-yours.html +++ b/site/partial/series/dangerously-yours.html @@ -117,9 +117,12 @@

Dangerously Yours was a half-hour radio program that focused on romance and adventure, with a strong emphasis on love stories between the characters. The show starred Victor Jory as the leading man, and often featured scenes where lovers would whisper sweet nothings to each other, while action and adventure played out in the background. At the end of each episode, an announcer would tease the audience with a brief preview of the upcoming week's show. The series underwent a title change towards the end of its run and became known as Vicks Matinee Theater, continuing to deliver romantic adventures to its audience.

Broadcast in 1944, Dangerously Yours was sponsored by Vicks and aired sixteen episodes during its time on the radio. Out of these sixteen, eleven are still available for collectors today. After the series transitioned to Vicks Matinee Theater, twenty-five more episodes were broadcast, some of which were repeats of earlier shows from Dangerously Yours. Out of these twenty-five episodes, twenty-two are known to still exist. The show was supported by the Vic Chemical Company, which produced various products like nose drops and vapor rubs. Victor Jory, a Hollywood actor, served as the primary hero and starred in adaptations of pirate, espionage, and adventure stories, all imbued with elements of romance. The show's name changed to Matinee Theater in October 1944. -

Sources: +

+

Performers: Victor Jory

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dark-fantasy.html b/site/partial/series/dark-fantasy.html index 29197d4..95891fb 100644 --- a/site/partial/series/dark-fantasy.html +++ b/site/partial/series/dark-fantasy.html @@ -261,9 +261,11 @@

Dark Fantasy was a thrilling radio series that entertained audiences with tales of the supernatural and mysterious, bringing horror dramas to life with chilling stories and adventures. Created by Scott Bishop, the series captivated listeners with tales that explored the unknown and delved into the realms of horror, science fiction, and murder mysteries. Much to the delight of its fans, the show offered chilling stories that left goosebumps, allowing the listeners' imaginations to run wild as they became immersed in the eerie world of Dark Fantasy.

Broadcast on NBC between 1941 and 1942, Dark Fantasy originated from radio station WKY in Oklahoma City. Scott Bishop, also known for his work on The Mysterious Traveler and The Sealed Book, was the brilliant mind behind the series, writing each thrilling episode. Tom Paxton served as the announcer during the show's Friday-night airings. Despite its short one-year run, Dark Fantasy's enduring appeal and excellent storytelling secured its place in radio history. With 31 episodes to its name, the show proved that Oklahoma City was more than capable of being the headquarters for haunts. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dear-adolf.html b/site/partial/series/dear-adolf.html index 1c1f371..1b8b38e 100644 --- a/site/partial/series/dear-adolf.html +++ b/site/partial/series/dear-adolf.html @@ -72,9 +72,11 @@

Dear Adolf is a captivating radio show consisting of six narrative letters based on real letters written by Americans to Adolf Hitler during WWII. The program offers a unique insight into Americans' opinions of Hitler and the Nazi regime. Written by Stephen Vincent Benét, Dear Adolf was produced as a "fight-talk program" which aimed to boost popular support for the war through network-based propaganda. The show, which features letters from individuals from various backgrounds, such as a farmer, mother, businessman, laborer, US soldier, and an Austrian-born naturalized American citizen, highlights their hopes, fears, and strong feelings towards Hitler and the war.

Produced in 1942, Dear Adolf was part of a collection of WWII-era programs that also included Man Behind the Gun, Hitler Speeches, Soldiers of the Press, Words at War, and You Can't Do Business with Hitler. These shows aired on different radio networks, aiming to increase awareness of and support for the war efforts. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/delmore-brothers.html b/site/partial/series/delmore-brothers.html index e532a9f..38a3c60 100644 --- a/site/partial/series/delmore-brothers.html +++ b/site/partial/series/delmore-brothers.html @@ -423,9 +423,12 @@

Delmore Brothers is a radio show that features the musical talents of brothers Alton and Rabon Delmore, who were country music pioneers and stars of the Grand Ole Opry in the 1930s. Born into poverty in Elkmont, Alabama, the duo combined gospel-style harmonies with guitar work from folk music to create a unique sound. In their performances, they utilized a rare tenor guitar, a four-string instrument predominantly used in vaudeville shows. Their shows also featured passionate pitches for their songbook, as they believed people were willing to pay more for their songs than to simply hear them perform.

The Delmore Brothers radio show aired from the 1930s to the 1950s, gaining significant traction when they signed with Victor Record's budget label Bluebird in 1933. They eventually became the most popular act on the Grand Ole Opry variety program. However, disagreements with Opry management led to their departure from the show in 1939. Although they continued to play and record music throughout the 1940s, they never reached the same level of success. Rabon passed away from lung cancer in 1952, and Alton eventually lost interest in performing, opting to focus on music lessons and odd jobs. Despite their wane in popularity, the Delmore Brothers remained influential in the world of country music. -

Sources: +

+

Performers: Alton Delmore, Rabon Delmore

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/democracy-in-america.html b/site/partial/series/democracy-in-america.html index 3b926ff..0e0ed93 100644 --- a/site/partial/series/democracy-in-america.html +++ b/site/partial/series/democracy-in-america.html @@ -162,9 +162,12 @@

Democracy in America is a well-produced dramatization of Alexis de Tocqueville's book of the same name, following the travels of Tocqueville and his companion, Gustave de Beaumont, as they explore America in the 1830s. The engaging series combines music, sound effects, and impressive acting to bring the historical story to life, with Tocqueville being played by Barry Morse and Beaumont by Alan King. Additionally, the educational show incorporates discussions on various topics relating to the series, hosted by historian Dorothy Gordon and featuring students from New York University.

The show originally aired on NBC and CBC in January of 1962, with a total of fourteen 30-minute episodes. Democracy in America was produced by Andrew Allan and directed by historian George Probst in conjunction with the Division of General Education of New York University and the Fund for Adult Education. The collection also includes two preview programs that aired immediately before the series, which delved deeper into the topics and themes presented in Tocqueville's book. -

Sources: +

+

Performers: Barry Morse, Alan King

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dimension-x.html b/site/partial/series/dimension-x.html index efb1f41..8e9884c 100644 --- a/site/partial/series/dimension-x.html +++ b/site/partial/series/dimension-x.html @@ -468,9 +468,12 @@

Dimension X was a science fiction radio program that showcased the works of renowned writers such as Ray Bradbury, Robert Bloch, Robert Heinlein, Isaac Asimov, and Kurt Vonnegut. The show's scriptwriter Ernest Kinoy adapted these masterpieces and also contributed some original stories. Dimension X's gripping plotlines often delved into themes of adventure, time, and space—all set in future tense. The program featured a variety of talented actors, including Joe Di Santis, Wendell Holmes, Jan Miner, and Mason Adams. Directed by Fred Weihe and Edward King, the series' signature echoed the title "DIMENSION X X X X X x x x x x" and heavily relied on the "X" factor, engaging audiences in a thrilling audio experience.

Broadcast on NBC Radio, Dimension X aired from April 8, 1950, to September 29, 1951. Throughout its run, the series released 50 episodes, 13 of which were broadcast live, while the remainder were prerecorded. The show was mostly unsponsored but was backed by Wheaties for two months starting in July 1950. Dimension X garnered a strong following, with all of its episodes still accessible today. This unique radio program preceded the television era and was followed by another NBC series, X Minus One (1955-58), which featured many of the same actors and scripts as Dimension X. -

Sources: +

+

Performers: Joe Di Santis, Wendell Holmes, Santos Ortega, Joseph Julian, Jan Miner, Roger De Koven, John Gibson, Ralph Bell, John Larkin, Les Damon, Mason Adams

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/down-our-way.html b/site/partial/series/down-our-way.html index 42a4ff5..b3baacc 100644 --- a/site/partial/series/down-our-way.html +++ b/site/partial/series/down-our-way.html @@ -252,9 +252,11 @@

Down Our Way is a heartwarming radio show that brings to life the close-knit community spirit of small-town America. Set in a simpler time, the story revolves around neighbors helping neighbors and using their faith in their daily lives. The central character is Eli Jenkins, the town's kindhearted grocer, who is always there to lend a helping hand when trouble arises. The show has a delightful, down-home tone, featuring aspects of small-town living, such as local politics, pie contests, and friendly rivalries. Choir music adds a touch of magic to the show, as the local choir regularly meets at Eli's grocery store to practice their hymnals.

While not much is known about Down Our Way, it is believed to have been created in the early 1930s. The show's quaint and nostalgic portrayal of simpler times resonates with listeners even today, transporting them back to a bygone era of small-town America, if only for 30 minutes at a time. Fans of radio shows featuring large protagonists might also enjoy Big Guy, Fat Man, Scattergood Baines, and Nero Wolfe. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dr-iq.html b/site/partial/series/dr-iq.html index f67fd61..9081635 100644 --- a/site/partial/series/dr-iq.html +++ b/site/partial/series/dr-iq.html @@ -45,9 +45,12 @@

Dr. I.Q. was a radio and television quiz program that featured a simple yet appealing format that captivated audiences from 1939 to 1959. The show's premise involved selecting audience members as contestants and asking them various questions. Host Lew Valentine, alongside his microphone-wielding assistants, engaged contestants and awarded cash prizes in the form of silver dollars and Mars Candy's Snickers bars. The show included features like the "Biographical Sketch," where contestants were given clues to identify a person, and the "Lady in the Balcony" quiz, which featured consecutive weekly appearances for a female contestant aiming to win a jackpot prize.

The radio version of Dr. I.Q. was broadcast from various concert halls and theaters in different cities, without a set studio, and aired on NBC and ABC networks from April 10, 1939, until November 29, 1950. Hosts during the radio show's run included Lew Valentine, Jimmy McClain, and Stanley Vainrib. Dr. I.Q. Jr., a juvenile version of the show, aired on NBC from 1941 to 1949, with Valentine and McClain as hosts. The television incarnation of Dr. I.Q. aired on ABC from November 4, 1953, to October 17, 1954, and again from December 15, 1958, to March 23, 1959. Jay Owen, James McClain, and Tom Kennedy all served as hosts during the TV show's run, and Hazel Bishop cosmetics was a sponsor of the program in 1954. Only one episode from the 1953-54 version and four episodes from the 1958-59 version, along with a pilot for Dr. I.Q. Jr., are known to still exist today. -

Sources: +

+

Performers: James McClain, Lew Valentine, Jay Owen, Tom Kennedy, Bob Shepard, Bill Ewing

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dr-kildare.html b/site/partial/series/dr-kildare.html index 1602709..9f1e7b9 100644 --- a/site/partial/series/dr-kildare.html +++ b/site/partial/series/dr-kildare.html @@ -558,9 +558,12 @@

Dr. Kildare was a radio show produced at WMGM New York, based on the popular Dr. Kildare movies from the late 1930s and early 1940s. The show starred Lew Ayres as the young, idealistic Dr. James Kildare and Lionel Barrymore as the seasoned diagnostician, Dr. Leonard Gillespie. The series followed their work at Blair General Hospital, focusing on Kildare's dedication to his patients while navigating the challenges of hospital administration and the eccentric characters that populated the hospital. The show's dramatic tone emphasized the cutting-edge medical techniques employed by the characters to save their patients, while the actors' strong performances provided a solid basis for engaging storytelling.

Dr. Kildare was created as a radio adaptation after its successful run as a film series, which was in turn inspired by the original character of Dr. James Kildare from author Frederick Schiller Faust's pulp-crime fiction stories. The radio show aired from the late 1940s to the early 1950s and featured several notable actors such as Stacy Harris, Isabel Jewell, Jay Novello, George Ellis, Paul Frees, Raymond Burr, and Jack Webb. In addition to the films and radio show, Dr. Kildare had several other adaptations, including a 1961–1966 TV series starring Richard Chamberlain, a comic book, a comic strip, and a 1972–1973 syndicated TV series called "Young Dr. Kildare." -

Sources: +

+

Performers: Lew Ayres, Lionel Barrymore, Stacy Harris, Isabel Jewell, Jay Novello, George Ellis, Paul Frees, Raymond Burr, Jack Webb, Virginia Gragg, Ted Osborne

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/dragnet.html b/site/partial/series/dragnet.html index 0abaa11..e777ec7 100644 --- a/site/partial/series/dragnet.html +++ b/site/partial/series/dragnet.html @@ -2808,9 +2808,12 @@

Dragnet was a radio police drama series that focused on real police stories in Los Angeles, with a signature "just the facts" style. It followed the cases of dedicated Los Angeles police detective Sergeant Joe Friday and his partners, revealing the boredom and drudgery as well as the danger and heroism of police work. The show aimed for realism and unpretentious acting, and its influence on subsequent police dramas in various media formats was significant. Dragnet's cultural impact continues, as elements of the show remain known and recognizable even to those unfamiliar with the program. The four-note introduction to the theme music, Danger Ahead, and the opening narration are instantly recognizable elements of the show.

Dragnet aired on NBC from June 3rd, 1949, to February 26th, 1957, and later transitioned to television, running from December 16th, 1951, to August 23rd, 1959, and from January 12th, 1967, to April 16th, 1970. There were also two Dragnet feature films, a straight adaptation starring Jack Webb in 1954, and a comedy spoof in 1987. Additionally, there were television revivals without Webb in 1989 and 2003. As the show developed, Friday's deadpan, fast-talking persona emerged, and his various partners provided variety and comic relief throughout the series. The show's scripts tackled a range of topics, from thrilling to mundane, which remained interesting due to the fast-paced plots and behind-the-scenes realism. -

Sources: +

+

Performers: Jack Webb, Barton Yarborough, Barney Phillips, Harry Bartell, Herb Ellis, Vic Perrin, Ben Alexander, Charles McGraw, Raymond Burr, Harry Morgan, Tol Avery, Various

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/duffys-tavern.html b/site/partial/series/duffys-tavern.html index 8a83299..c2df17d 100644 --- a/site/partial/series/duffys-tavern.html +++ b/site/partial/series/duffys-tavern.html @@ -1053,9 +1053,12 @@

Duffy's Tavern is an American radio situation comedy that revolves around the misadventures of Archie, the manager of the titular tavern. Portrayed by Ed Gardner, Archie is prone to involvement in get-rich-quick schemes and romantic missteps, often communicating with malaprops and mixed metaphors. The show features a variety of earthbound but dreaming New York characters and manages to maintain an intimate tavern atmosphere throughout each episode. Regulars include Duffy's daughter Miss Duffy and barstool jockey Clifton Finnegan, with notable guest stars such as Boris Karloff, Lucille Ball, and Marlene Dietrich occasionally making appearances.

The show ran for a decade on several networks including CBS from 1941-42, NBC-Blue Network from 1942-44, and concluding with NBC from 1944-51, totaling its run at the end of the December 28, 1951 broadcast. A film adaptation titled Ed Gardner's Duffy's Tavern was released in 1945, featuring Archie and his regulars surrounded by a throng of Paramount Pictures stars playing themselves. Additionally, a short-lived TV series aired in 1954, co-produced by Hal Roach Jr. In popular culture, Duffy's Tavern has inspired references in other TV shows such as "Cheers," "Archie Bunker's Place," and "Ryan's Hope," as well as numerous real-life bars and inns adopting the name across the United States. -

Sources: +

+

Performers: Ed Gardner, Shirley Booth, Florence Halop, Hazel Shermet, Charlie Cantor, Eddie Green, Fats Pichon, Alan Reed

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/edgar-bergen--charlie-mccarthy.html b/site/partial/series/edgar-bergen--charlie-mccarthy.html index e7e7e0a..5cae8b0 100644 --- a/site/partial/series/edgar-bergen--charlie-mccarthy.html +++ b/site/partial/series/edgar-bergen--charlie-mccarthy.html @@ -387,9 +387,12 @@

Edgar Bergen & Charlie McCarthy was a comedy variety show featuring the unique talents of ventriloquist Edgar Bergen and his wooden sidekick, Charlie McCarthy. The show was based on a witty and often ribald sense of humor, with Charlie McCarthy delivering irrepressible wisecracks that amused not only the audience but also Bergen himself. This wacky premise was paired with a classy and English tone, thanks to the presence of monocle-wearing Charlie McCarthy, who appeared to be from across the pond. The show also featured other well-loved Edgar Bergen characters, such as the dopey hayseed Mortimer Snerd and the odd Effie Klinker, who was merely Bergen's hand with a kerchief on it.

The radio show aired from 1936 to 1955 and stayed in the top five most popular shows for a decade. After an initial season on The Rudy Vallee Hour, it found a home on the Chase and Sandborn Radio Hour in 1937, where it remained until 1948. Throughout its run, the show featured many famous guest stars, such as W.C. Fields, Marilyn Monroe, Orson Welles, and Lucille Ball. It even made national headlines when Mae West starred in a racy "Adam and Eve" sketch that led to her being effectively blackballed for over a decade. Bergen and McCarthy went on to make numerous TV appearances in the 1950s, proving their enduring popularity despite the unlikelihood of a ventriloquist act succeeding on radio. The show stands as a testament to Edgar Bergen's mastery of witty repartee and the willingness of radio audiences to embrace unique and creative acts. -

Sources: +

+

Performers: Edgar Bergen, Judy Canova, Don Ameche, Dorothy Lamour, W.C. Fields, Mae West, Ray Noble, Miriam Hopkins, Fred Allen, Lucille Ball, Frank Sinatra, Liberace, Tallullah, Gary Cooper, Fats Waller, Gordon MacRae, Betty Hutton, Carole Lombard, Linda Darnell, Rita Hayworth, Judy Garland, Lena Horne, Marilyn Monroe, Rosemary Clooney, Susan Hayward, Anita Louise, Hildegarde Loretta Sell, Johh Garfield, Betty Grable, Gene Tierney, Lana Turner, Veronica Lake, Sydney Greenstreet, Greer Garson, Basil Rathbone, Orson Welles

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/ellery-queens-minute-mysteries.html b/site/partial/series/ellery-queens-minute-mysteries.html index 511a0e6..a307a0f 100644 --- a/site/partial/series/ellery-queens-minute-mysteries.html +++ b/site/partial/series/ellery-queens-minute-mysteries.html @@ -306,9 +306,11 @@

Ellery Queen's Minute Mysteries is a radio show featuring one-minute mysteries. The show follows the intriguing adventures of Ellery Queen, an author who solves mysteries in his spare time and then writes about them. Created by cousins Fred Dannay and Manfred B. Lee, the character of Ellery Queen was conceived as a combination of Sherlock Holmes and Watson. The stories are set in a 1920s setting, with Queen often accompanied by his sidekick and father, Richard Queen. The captivating episodes showcase the pair's mystery-solving escapades, making for an engaging and thrilling listening experience for fans of detective stories and whodunits.

The radio show based on Ellery Queen's adventures was born after the character's successful stint in Dannay and Lee's novels. The show aired during the golden age of radio, leaving a vast and lasting impact on listeners. Over the years, the character of Ellery Queen has appeared in various other formats, including television shows and other media. Additionally, a pseudonymous character named Barnaby Ross, created by Dannay and Lee, was eventually revealed to be Ellery Queen. The move further expanded the character's universe, with several existing Barnabay Ross novels being rebranded as Ellery Queen stories. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/encore-theater.html b/site/partial/series/encore-theater.html index af5bb29..99a924b 100644 --- a/site/partial/series/encore-theater.html +++ b/site/partial/series/encore-theater.html @@ -135,9 +135,12 @@

Encore Theater is a dramatic anthology series that features medical-themed dramas based on true stories. The show weaves compelling and sympathetic narratives while providing valuable insights into the history of medicine. Each episode, although tied together by a common theme, stands on its own as a captivating drama. The series showcases the evolution of medical science and the unwavering dedication of healthcare practitioners to their Hippocratic oath. Sponsored by Schenley Labs, Inc., the show boasts an impressive cast comprising some of the finest actors from stage, screen, and radio. The skilled direction of William Lawrence and the exceptional musical backdrop crafted by Leith Stevens further elevate the series, making it a timeless gem.

Encore Theater aired during the summer of 1946 and featured notable cast members such as Lurene Tuttle, Eric Snowden, Gerald Mohr, Ronald Colman, Robert Young, and Lionel Barrymore. The series was based on a combination of medical research and personal stories of medical workers, shedding light on the world of healthcare during its time. The show was eventually replaced by Cresta Blanca Hollywood Players. To explore similar series, one can also check out Adventures in Research, Doctor Fights, American Trail, Science Magazine of the Air, Better Living Theater, Exploring the Unknown, and Dr Christian. -

Sources: +

+

Performers: Lurene Tuttle, Eric Snowden, Gerald Mohr, Ronald Colman, Robert Young, Lionel Barrymore

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/escape.html b/site/partial/series/escape.html index 848149c..7e0b696 100644 --- a/site/partial/series/escape.html +++ b/site/partial/series/escape.html @@ -1980,9 +1980,12 @@

Escape is a dramatic adventure anthology radio series that captivated listeners with its thrilling and suspenseful episodes. Each of the more than 200 episodes was a meticulously crafted micro-drama designed to hold the audience's attention for 30 minutes. The show offered adaptations of classic works by famous writers, as well as original stories by up-and-coming talent. Escape was known for its brilliant scriptwriting and superb production quality, often providing more dramatically focused and atmospheric adaptations than more high-profile shows like Suspense. It captured the essence of radio drama and continues to enthrall listeners today.

The show aired between 1947 and 1954 and was broadcast on CBS Radio. A total of 228 episodes were produced during its seven-year run, and many of them remain in good condition today. Despite its irregular scheduling and the lack of a consistent timeslot, Escape was highly popular during its time on air. Among the notable actors involved in the production were William Conrad, John Dehner, Jack Webb, Elliott Lewis, and Frank Lovejoy. A television counterpart of the show also aired on CBS TV for a few months in 1950, further solidifying its legacy in the history of broadcast entertainment. -

Sources: +

+

Performers: Elvia Allman, Eleanor Audley, Parley Baer, Michael Ann Barrett, Tony Barrett, Harry Bartell, Ted Bliss, Lillian Buyeff, Ken Christy, William Conrad, Ted de Corsia, John Dehner, Don Diamond, Paul Dubov, Sam Edwards, Virginia Gregg, Lou Merrill, Howard McNear, Jess Kirkpatrick, Dee J. Thompson, Shep Menken, Frank Gerstle, George Neise, Jeanette Nolan, Dan O'Herlihy, Barney Phillips, Forrest Lewis, Robert Griffin, Alan Reed, Bill Johnstone, Sandra Gould, Junius Matthews, Carleton G. Young, Marvin Miller, Frank Lovejoy, Berry Kroeger, Vic Perrin, Elliott Lewis, Eleanore Tanin, Herb Vigran, Jack Webb, Peggy Webber, Will Wright, Peter Leeds, Hans Conreid, Jennette Nolan, Jay Novello, Jack Edwards, Joan Banks

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/exploring-tomorrow.html b/site/partial/series/exploring-tomorrow.html index a639dce..24de19c 100644 --- a/site/partial/series/exploring-tomorrow.html +++ b/site/partial/series/exploring-tomorrow.html @@ -216,9 +216,12 @@

Exploring Tomorrow was an American radio series focusing on science fiction, described by an advertisement as "the first science-fiction show of science-fictioneers, by science-fictioneers and for science-fictioneers - real science fiction for a change!" The show was narrated by John W. Campbell, editor of Astounding Magazine, and featured stories written by prominent science fiction authors of the era. The series had a unique tone and style, with scripts exploring futuristic themes and concepts, making it a favorite among fans of the genre.

The radio show aired on the Mutual Broadcasting System from December 4, 1957, until June 13, 1958. It featured a total of 26 episodes, with notable writers such as Randall Garrett, Gordon R. Dickson, Robert Silverberg, Isaac Asimov, Philip K. Dick, Poul Anderson, John Fleming, Raymond E. Banks, George O. Smith, and Tom Godwin contributing to the series. While it did not have any direct TV show adaptations or other media formats, Exploring Tomorrow helped to influence later science fiction radio programs like Dimension X and X Minus One. -

Sources: +

+

Performers: Mandel Kramer, Bryna Raeburn, Lawson Zerbe, Lon Clark, Mason Adams, Connie Lembcke, Larry Haines, Don Douglas, Bret Morrison, Charlotte Sheffield

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/family-doctor.html b/site/partial/series/family-doctor.html index 1e407f5..ca7756a 100644 --- a/site/partial/series/family-doctor.html +++ b/site/partial/series/family-doctor.html @@ -369,9 +369,11 @@

Family Doctor tells the story of Dr. Grant Adams, a wise and humorous doctor in a small town who serves as both the community's physician and their moral rectifier. Each week, Dr. Adams confronts various communal issues, ranging from robbery to suicide, and addresses these problems with his common sense and gentle moral judgment. While his old-fashioned remedies for illnesses may be considered outdated by modern standards, his approach to dealing with life's daily issues remains timeless. The show features thirty-nine episodes, out of which only twelve were ever aired. Family Doctor's entertaining and engaging narrative ensures that listeners will be eager to hear more stories from the quirky inhabitants of the small town.

Broadcasters Program Syndicate and Bruce Eells and Associates syndication produced Family Doctor as a dramatic serial in 1932. Set in Cedarton, a town characterized by its generally healthy and good-natured residents, the show explores the challenges and moral dilemmas faced by these individuals, with Dr. Adams always ready to help guide them on the right path. Each episode is self-contained and does not end on a cliffhanger, but maintains many soap opera elements, such as organ music and local advertisements. At the end of every episode, Dr. Adams signs off saying, "This is the family doctor. I'll be in to see you again right soon. Goodbye…" -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/father-knows-best.html b/site/partial/series/father-knows-best.html index c283642..970195d 100644 --- a/site/partial/series/father-knows-best.html +++ b/site/partial/series/father-knows-best.html @@ -1008,9 +1008,12 @@

Father Knows Best is a radio program based on a domestic comedy, which focuses on the Anderson family, and their experiences dealing with the day-to-day woes of life. The show centers around the family patriarch, Jim Anderson, as well as his wife Margaret, and their children Betty, Bud, and Kathy. The style and tone of Father Knows Best are light-hearted and family-oriented, with plotlines often involving misunderstandings, generation gap issues, and trivial arguments between the children. Although the comedy is not intended to be overly humorous, the program still manages to captivate the audience with its endearing and relatable characters.

Father Knows Best was broadcast from 1949 to 1954 on NBC, with a total of 203 episodes known to have aired. It was sponsored by General Foods during its three-year radio run, which led to numerous product advertisements throughout the show. Notably, the program was adapted to television in 1954, with the small screen version also starring Robert Young as Jim Anderson. The show ran on television until 1962, further solidifying its popularity and status as a classic family sitcom. Father Knows Best, then, served as a predecessor to other well-loved family comedies such as Ozzie and Harriet and Leave it to Beaver, and its impact can still be felt in today's television landscape. -

Sources: +

+

Performers: Robert Young, June Whitley, Jean Vander Pyl, Rhoda Williams, Ted Donaldson, Norma Jean Nilsson

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/fibber-mcgee-and-molly.html b/site/partial/series/fibber-mcgee-and-molly.html index 9b488c2..9992eca 100644 --- a/site/partial/series/fibber-mcgee-and-molly.html +++ b/site/partial/series/fibber-mcgee-and-molly.html @@ -5553,9 +5553,12 @@

Fibber McGee and Molly was an American radio comedy series focused on the misadventures of a working-class couple, Fibber McGee and his loving wife Molly, living in the community of Wistful Vista. Created and portrayed by husband-and-wife duo Jim and Marian Jordan, the show was a situational comedy that followed their previous radio sitcom, Smackout. The show featured an announcer, house band, and a vocal quartet for added interludes. Fibber McGee was a habitual storyteller, while Molly, his sometimes terse but always loving wife, provided balance to his character. The series became one of the most popular radio shows of its time, and at the peak of its success in the 1940s, it was adapted into a string of feature films.

Fibber McGee and Molly aired from April 16, 1935, to October 2, 1959, with 1,611 episodes produced. The show began on the NBC Blue Network and later became a staple of the NBC Red Network. In 1957, it continued as a short-form series as part of the weekend Monitor until 1959. A 1959 attempt to adapt the series to television with a different cast and new writers was a critical and commercial failure, bringing the series to an end after Marian Jordan's subsequent death. The series was sponsored by Johnson's Wax, Pet Milk, and Reynolds Aluminum, while notable actors involved in the production included Jim Jordan, Marian Jordan, Harlow Wilcox, and announcer Harlow Wilcox. -

Sources: +

+

Performers: Jim Jordan, Marian Jordan

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/fire-fighters.html b/site/partial/series/fire-fighters.html index ded31ac..2c8d835 100644 --- a/site/partial/series/fire-fighters.html +++ b/site/partial/series/fire-fighters.html @@ -1278,9 +1278,12 @@

Fire Fighters is a syndicated radio show that depicts the thrilling and suspenseful stories of American firefighters battling their most destructive enemy, the demon of fire. The show follows the adventures of rookie firefighter Tim Collins and fire chief Bob Cody, and brings attention to the unsung heroes who are ready to ride day and night to protect lives and property. The drama-filled episodes are inspired by true stories and actual cases, offering a unique insight into the realities of firefighting, without focusing on the horror or supernatural elements. In addition to entertaining audiences, Fire Fighters strives to raise awareness about fire safety through its exciting narratives and by forming a Firefighters Club, where children can learn more about firefighting techniques and earn badges for their knowledge in fire safety.

The show, produced by William F. Holland Productions, Inc., was initially aired in 1948 and continued to broadcast into the early 1950s across various markets coast-to-coast, including cities such as Portland, Omaha, and Washington, D.C. Fire Fighters, which starred Cameron Prud'Homme and Lyle Sudrow, was later sponsored by Grandma Cookie Company, and a variety of other sponsors. It was also appreciated by local fire departments across the country for promoting fire safety and publicizing modern firefighting techniques. This captivating 15-minute daily show provided an excellent source of entertainment for children while educating them about the hardworking individuals dedicated to combating fire and its potentially devastating effects. -

Sources: +

+

Performers: Cameron Prud’Homme, Lyle Sudrow

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/first-nighter.html b/site/partial/series/first-nighter.html index a5d2bdc..299e0da 100644 --- a/site/partial/series/first-nighter.html +++ b/site/partial/series/first-nighter.html @@ -297,9 +297,12 @@

The First Nighter Program was a radio anthology comedy-drama series that featured a host named Mr. First Nighter, who was played by several different actors throughout the show's run. Each week, Mr. First Nighter would take listeners on a journey through the bustling streets of Broadway and into the "Little Theater Off Times Square," where audiences would be treated to a variety of romantic comedies. The series mainly featured a cast of Don Ameche, June Meredith, Les Tremayne, Barbara Luddy, and Olan Soule, alongside a supporting orchestra directed by Eric Sagerquist, Caesar Petrillo, and Frank Worth at various times. Joseph T. Ainley produced and directed the series, which was performed in front of a live studio audience and featured actors dressed in formal attire.

The First Nighter Program aired from November 27, 1930, to September 27, 1953, spanning multiple radio networks, including NBC Blue Network, NBC Red Network, CBS, and Mutual. It was sponsored by The Campana Company and exclusively featured commercials for their products, such as Italian Balm, which became the best-selling hand lotion in the United States during the 1930s. The show's most popular episode was the annual Christmas presentation of "Little Town of Bethlehem," which first aired in 1937 and continued to be a staple of the series due to audience demand. In total, at least 16 episodes from the 1944-1953 period are still known to exist today. -

Sources: +

+

Performers: Charles P. Hughes, June Meredith, Macdonald Carey, Bret Morrison, Marvin Miller, Don Briggs, Rye Billsbury, Don Ameche, Betty Lou Gerson, Les Tremayne, Barbara Luddy, Olan Soule

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/five-minute-mysteries.html b/site/partial/series/five-minute-mysteries.html index fbf77e4..3abf56b 100644 --- a/site/partial/series/five-minute-mysteries.html +++ b/site/partial/series/five-minute-mysteries.html @@ -405,9 +405,11 @@

Five Minute Mysteries is a radio show featuring extremely short mystery plots designed to engage listeners as they try to solve the case alongside the sleuth. The episodes were produced and syndicated to local radio stations as a "barter/trade" program, meaning they were primarily used to sell advertising to local merchants or trade advertising announcements for goods, services, or premiums. To accommodate variations in local advertising and station announcements, musical interludes were strategically placed within the shows. The structure and concept of Five Minute Mysteries is similar to other short radio programs like Ellery Queen Mysteries and Strange Adventure.

The specific years and network details of Five Minute Mysteries are not clear, but it can be contextualized alongside other contemporaneous short radio programs like Incredible But True, Ripley's One Minute Shorts, Word Detective with Basil Rathbone, and Ellery Queen Minute Mysteries. The barter/trade nature of the program and the ability for each individual station to insert their own content into it has led to a rich tapestry of local variations and unique customization. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/flash-gordon.html b/site/partial/series/flash-gordon.html index 479d379..f8eb4b6 100644 --- a/site/partial/series/flash-gordon.html +++ b/site/partial/series/flash-gordon.html @@ -252,9 +252,12 @@

Flash Gordon is a radio show about a space adventure comic strip created by Alex Raymond. The show follows the exciting interplanetary adventures of Flash Gordon, a handsome polo player and Yale University graduate, alongside his companions Dale Arden and Dr. Hans Zarkov. The action-packed story begins with Earth being threatened by a collision with the planet Mongo. Dr. Zarkov invents a rocket ship to fly into space in an attempt to stop the disaster, and along the way, they come into conflict with Ming the Merciless, Mongo's evil ruler. The radio show captivated audiences with its thrilling adventures, suspenseful narrative, and high-flying fun that resonated with both kids and adults alike.

The Flash Gordon radio show was first broadcast in California in 1935 and was aired on the West Coast. Gale Gordon, a prolific actor whose career spans decades, portrayed the lead character, Flash. Unfortunately, not much information is available about the actors who played Dale and Ming, but these roles were filled by the talented actors Bruno Wick and an unknown actress, respectively. The Flash franchise inspired many other creative projects such as comic strips, a Republic Serial series of adventures, and even television adaptations. Fans of the radio show could follow their favorite characters in related comic pages and other old-time radio programs like Jungle Jim, Tarzan, Speed Gibson, Terry and the Pirates, and Air Adventures of Jimmy Allen. -

Sources: +

+

Performers: Gale Gordon

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/fort-laramie.html b/site/partial/series/fort-laramie.html index d5e5b77..9da0c53 100644 --- a/site/partial/series/fort-laramie.html +++ b/site/partial/series/fort-laramie.html @@ -378,9 +378,12 @@

Fort Laramie was a radio show that focused on tales of the dark and tragic ground of the wild frontier. The series revolved around the character Lee Quince, a captain in the cavalry, and emphasized historical accuracy, with the creator, Norman Macdonnell, insisting on the use of correct geographic names, authentic Indian practices, military terminology, and original names of the buildings at the real Fort Laramie. The show was led by Canadian-born actor Raymond Burr, who played the role of Captain Lee Quince. The supporting cast included Vic Perrin as Sgt. Goerss and Jack Moyles as Major Daggett, the commanding officer of the post.

Fort Laramie aired 41 episodes from January 22, 1956, to October 28, 1956, on CBS Radio. An audition episode was recorded on July 25, 1955. The series starred Raymond Burr, who later became a television star as Perry Mason. The show explored mature themes and delved into the psychological motivation of its characters as they navigated life in the unforgiving American West. The series remains highly regarded for its accurate portrayal of historical events and figures, as well as its thoughtful exploration of the human condition in the context of the wild frontier. -

Sources: +

+

Performers: Raymond Burr, Vic Perrin, Jack Moyles

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/frankenstein.html b/site/partial/series/frankenstein.html index 0b0126f..dee5012 100644 --- a/site/partial/series/frankenstein.html +++ b/site/partial/series/frankenstein.html @@ -135,9 +135,12 @@

Frankenstein is a radio show inspired by Mary Shelley's original story, Frankenstein; or, The Modern Prometheus. The show follows the story of Victor Frankenstein, a scientist who experiments with chemistry, alchemy, and galvanic electricity to create a new being using parts from different recently deceased corpses. This character, often misunderstood due to its portrayal in the 1931 Universal Horror film starring Boris Karloff, is the scientist's monstrous creation. The radio show adaptation incorporates elements of Gothic horror, the Romantic movement, and occult themes, while also being cited as an early example of science fiction. Various adaptations of the story were featured in other radio shows, such as Suspense, The Weird Circle, and The Witch's Tale.

The Frankenstein radio show was a thirteen-part serial from the branch of Transco Syndications that aired in 1938. Boris Karloff, who played the Monster in the film adaptations, is featured in air trailers for Frankenstein, Bride of Frankenstein, Son of Frankenstein, and House of Frankenstein. Karloff also played the Monster opposite Santa Claus on the radio show, It's Time to Smile. Other notable adaptations and appearances of the story can be found in episodes of Suspense, The Weird Circle, and The Witch's Tale. -

Sources: +

+

Performers: Boris Karloff, Bela Lugosi, David Carradine, Lon Chaney Jr., Glenn Strange

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/frontier-fighters.html b/site/partial/series/frontier-fighters.html index 057d546..d6d46de 100644 --- a/site/partial/series/frontier-fighters.html +++ b/site/partial/series/frontier-fighters.html @@ -369,9 +369,11 @@

Frontier Fighters is a captivating radio series that takes listeners on an enthralling journey back in time, immersing them in the adventures of heroes who fought and conquered the wild, untamed West. The show follows a syndicated format and features episodes which shed light on various aspects of the history of the Wild West, each episode lasting for approximately 15 minutes. The engaging stories capture moments such as Robert La Salle's navigation along the Mississippi River and Lewis and Clark's challenging expedition to the West Coast of North America, providing an unparalleled insight into the fascinating chronicles of the shaping of the American frontier.

Originally airing in 1935, Frontier Fighters was broadcast on the Western Documentary radio network, and it is currently unknown how many episodes were originally produced. Showcasing American history through an auditory medium, Frontier Fighters is remembered alongside other popular historical dramas including American Adventure, An American in England, American Trail, and Cavalcade of America. These series captured the essence of America's past, while simultaneously influencing the radio content of their time. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/frontier-town.html b/site/partial/series/frontier-town.html index 7de99fd..f5c3a5b 100644 --- a/site/partial/series/frontier-town.html +++ b/site/partial/series/frontier-town.html @@ -441,9 +441,12 @@

Frontier Town is a radio show centered around the character Chad Remington, an aspiring lawyer in the big city, whose world is turned upside down when he learns of his father's murder back in the small ranching town of Dos Rios. His quest for justice leads him to a new career as a crime-fighting attorney, striving to bring order to his small corner of the frontier as it transitions from the Old West to the New. The show features a cast of interesting characters, including Remington's Western sidekick Cherokee O'Bannon, a hard-drinking gentleman of mixed blood, who is played by comedic character actor Wade Crosby. The tone of the show is adventurous and exciting, and the storytelling style focuses on the individual sagas of different towns in the wild west.

The radio show Frontier Town aired from 1950 to 1953 and was syndicated by Bruce Eells Productions. Jeff Chandler initially played the role of Chad Remington and was eventually replaced by veteran actor Reed Hadley halfway through the series. The show ran for 47 episodes, airing on different stations at various times due to syndication. Some parts of the show included organ music provided by Ivan Ditmars and Bob Mitchell, and the show was written and directed by Paul Franklin. The series gained the attention of radio fans and historians alike for its portrayal of the hardships and adventures of the early settlers in the untamed wild west. -

Sources: +

+

Performers: Jeff Chandler, Reed Hadley, Wade Crosby

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/gangbusters.html b/site/partial/series/gangbusters.html index 018de0b..322a432 100644 --- a/site/partial/series/gangbusters.html +++ b/site/partial/series/gangbusters.html @@ -828,9 +828,11 @@

Gang Busters was an American dramatic radio program known for bringing authentic police case histories to its audience. Created by Phillips H. Lord, the show aimed to combine the real-life aspects of newspapers with the thrilling entertainment of gangster films from the early 1930s. The program showcased true crime cases, featuring real criminals and law enforcement personnel, and often included real wanted poster alerts and teasers referred to as "Crime Buster Clues". The show was characterized by its fast-paced, hard-hitting storytelling style and well-crafted sound effects, providing a sense of excitement and suspense that was reminiscent of good gangster movies.

The radio show first premiered on January 15, 1936, and continued to be broadcast for 21 years, until November 27, 1957. Initially airing on NBC as "The G-Men," the show later shifted to CBS, the Blue Network, and the Mutual Broadcasting System, with a variety of sponsors including Chevrolet, Colgate-Palmolive, Sloan's Liniment, Waterman pens, Tide, Grape-Nuts, and Wrigley's chewing gum. Over the years, Gang Busters featured prominent names in radio broadcasting, such as Richard Widmark, Art Carney, Joan Banks, Frank Lovejoy, and Larry Haines. The popularity of the radio show also led to spin-offs in comic books, Big Little Books, as well as film and television adaptations. -

Sources: +

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/grand-ole-opry.html b/site/partial/series/grand-ole-opry.html index 77e3294..ed4df0f 100644 --- a/site/partial/series/grand-ole-opry.html +++ b/site/partial/series/grand-ole-opry.html @@ -2709,9 +2709,11 @@

Grand Ole Opry is a weekly American country music stage concert held in Nashville, Tennessee. Established on November 28, 1925, by George D. Hay as a one-hour radio "barn dance" on WSM, it is currently the longest-running radio broadcast in U.S. history. The show is dedicated to honoring country music and its history, featuring a mix of renowned singers and contemporary chart-toppers performing country, bluegrass, Americana, folk, and gospel music. It also includes comedic performances and skits that attract hundreds of thousands of visitors worldwide and millions of radio and internet listeners. In the 1930s, the show began hiring professional musicians and expanded to four hours, becoming a Saturday night tradition in nearly 30 states.

The Grand Ole Opry aired on WSM, and in 1939, it debuted nationally on NBC Radio. Ryman Auditorium served as its home from 1943 to 1974, and by then, Nashville had become America's "country music capital." Since 1974, the Opry has been broadcast from the Grand Ole Opry House in Nashville, with an annual three-month winter stint at the Ryman from 1999 to 2020. The show has had various television broadcasts over the years, with its current partner being Circle, a digital multicast network. As of January 28, 2023, 5,065 episodes have aired, and being a member of the Opry is considered one of the crowning achievements in country music. Notable actors and individuals involved in the production include Bill Cody, Mike Terry, Charlie Mattos, Kelly Sutton, Larry Gatlin, and Bobby Bones, who all serve as announcers for the show. -

Sources: +

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/great-scenes-from-great-plays.html b/site/partial/series/great-scenes-from-great-plays.html index 309954b..be80db5 100644 --- a/site/partial/series/great-scenes-from-great-plays.html +++ b/site/partial/series/great-scenes-from-great-plays.html @@ -207,9 +207,12 @@

Great Scenes from Great Plays was a radio series that adapted around twenty minutes' worth of scenes from a variety of plays, such as "Dark Victory", "Little Women", "A Tale of Two Cities", "What Every Woman Knows", "The Devil and Daniel Webster", "Young Mr. Lincoln", and "A Doll's House", among others. The show aimed to offer high-brow entertainment that wasn't in direct competition with the burgeoning medium of television, and featured a post-discussion of each episode that encouraged church attendance regardless of a specific denomination. The first episode starred Walter H. Hampden as Cyrano de Bergerac, who then hosted the remaining broadcasts, and the acting support was provided by the Episcopal Actors Guild, which included renowned actors such as Basil Rathbone, Beatrice Straight, Jane Cowl, Ann Seymore, Boris Karloff, and Joan Caulfield.

The show aired from 1 October 1948 until 25 February 1949, with a total of 22 episodes broadcast on the Mutual Broadcasting System on Fridays at 8pm. It was sponsored by the National Council of the Protestant Episcopal Church. The acting talent in the series featured stars like Jane Powell, Joan Caulfield, Henry Fonda, Gene Tierney, and Eddie Albert. While not one of the best-known series, the show remains a gem for serious listeners who crave programming with a message. -

Sources: +

+

Performers: Walter H. Hampden, Basil Rathbone, Beatrice Straight, Jane Cowl, Ann Seymore, Boris Karloff, Joan Caulfield, Jane Powell, Henry Fonda, Gene Tierney, Eddie Albert

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/gunsmoke.html b/site/partial/series/gunsmoke.html index 4f5c054..52fbb25 100644 --- a/site/partial/series/gunsmoke.html +++ b/site/partial/series/gunsmoke.html @@ -4293,9 +4293,12 @@

Gunsmoke is a long-running classic radio show known for its high values and captivating storytelling. Set in Dodge City, Kansas in the 1870s, the show revolves around the character Matt Dillon, played by William Conrad. Gunsmoke is notable for its well-developed scripts, top-notch acting, and outstanding sound effects that transport the listener back to the old west. It features the adventures of Marshal Matt Dillon, Chester Proudfoot (played by Parley Baer), Kitty (played by Georgia Ellis), and Doc Adams (played by Howard McNear). The show's combination of realistic stories and gripping soundscapes sets it apart from many other radio shows of its time.

Originally airing on the CBS network from April 26, 1952, to June 18, 1961, the show has a total of 480 episodes, 2 auditions, and a 5-hour tribute. Gunsmoke also had an Australian version, produced sometime in 1955 under the Artransa label, airing on the Macquarie network, although its duration and number of episodes remain unknown. The show made its mark during the first couple of years without sponsors, as CBS funded its production. By 1955, Gunsmoke was adapted for television and enjoyed a successful 20-season run, with a total of 635 episodes aired. The TV adaptation of the show won 15 Primetime Emmy Awards and garnered continuous high ratings throughout its original run. -

Sources: +

+

Performers: William Conrad, Parley Baer, Howard McNear, Georgia Ellis

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/halls-of-ivy.html b/site/partial/series/halls-of-ivy.html index 7d2b93d..0c9e2d7 100644 --- a/site/partial/series/halls-of-ivy.html +++ b/site/partial/series/halls-of-ivy.html @@ -819,9 +819,12 @@

Halls of Ivy was a radio sitcom that revolved around the story of a small Midwestern college and its President, William Todhunter Hall, played by Ronald Colman. Set in the little college town of Ivy, the show followed the interactions of President Hall and his wife, Victoria, a former British stage actress, with students, friends, and college trustees. The tone and style of the show were known for its intelligently crafted humor, attention to real-life concerns, and a knack for language play, inverted cliches, and swift puns. The dynamic between the lead couple was a great example of "opposites attract," as the characters came from contrasting backgrounds, adding another layer of comedy to the show.

The radio show ran for a total of 110 episodes between January 6, 1950, and June 25, 1952. It was then adapted into a CBS television comedy from 1954 to 1955, with Ronald Colman and his wife, Benita Hume, reprising their roles. The show aired on NBC and was primarily written by Jerome Lawrence and Robert Lee, who later wrote the successful Broadway play Inherit the Wind. The Halls of Ivy was sponsored by Schlitz Brewing Company and Nabisco. Over time, the show tackled controversial topics and often pushed boundaries on social issues, such as racial prejudice and college fraternity hazing, making it a forward-looking and innovative comedy for its time. -

Sources: +

+

Performers: Ronald Colman, Benita Hume, Herbert Butterfield, Willard Waterman, Elizabeth Patterson, Gloria Gordon, Alan Reed, Virginia Gregg, Lee Patrick, Jean Vander Pyl, Rolfe Sedan, Sidney Miller, William Tracy, Sam Edwards, Arthur Q. Bryan, Barton Yarborough, James Gleason, Jerry Hausner

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/have-gun-will-travel.html b/site/partial/series/have-gun-will-travel.html index c6f947d..ea1dbcb 100644 --- a/site/partial/series/have-gun-will-travel.html +++ b/site/partial/series/have-gun-will-travel.html @@ -972,9 +972,12 @@

Have Gun - Will Travel is an American Western series that revolves around the adventures of "Paladin," a gentleman investigator and gunfighter who travels around the Old West working as a mercenary hired to solve problems. Paladin prefers to settle conflicts without violence but is highly skilled in combat when necessary. The character comes from a wealthy background, is highly cultured, and resides at the Hotel Carlton in San Francisco when not working. As a hybrid between Westerns and private detective stories, the show has been described as "the Thinking Man's Western."

Originally broadcast by CBS on both television and radio from 1957 through 1963, the television version starring Richard Boone was highly popular, ranking third or fourth in the Nielsen ratings during its first four seasons. The radio series, starring John Dehner, debuted in November 1958, making Have Gun - Will Travel one of the few shows in television history to spawn a successful radio version. The TV show ran for a total of 225 episodes, while the radio show produced 106 episodes between 1958 and 1960. Gene Roddenberry, the creator of Star Trek, was one of the lead writers for the series. -

Sources: +

+

Performers: Richard Boone, Kam Tong, John Dehner

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/hello-americans.html b/site/partial/series/hello-americans.html index 8849ad0..71a765b 100644 --- a/site/partial/series/hello-americans.html +++ b/site/partial/series/hello-americans.html @@ -126,9 +126,12 @@

Hello Americans was a 12-episode radio show created by Orson Welles, which focused on Latin and South American culture. The show was inspired by Welles' interest in these regions and his time spent in Brazil working on the film It's All True. The program featured a generally lighthearted tone, with Welles enjoying himself throughout the series. Despite moments of seriousness and occasional melodramatics, the show was able to present Central and South American countries in a positive light, emphasizing their interesting history and people without condescension. The episodes were also peppered with editorial insertions, primarily addressing racism and occasionally taking aim at fascism.

Hello Americans was broadcast during 1942 and 1943 as a documentary drama series that detailed Welles' South American adventures, developed under the auspices of the CIA. The show explored various aspects of South American culture, from the Andes Mountains to the cities of Brazil. Notable guests on the program included Hans Conried, Gerald Mohr, Laird Cregar, Agnes Moorehead, Ray Collins, and Carmen Miranda. -

Sources: +

+

Performers: Orson Welles, Carmen Miranda, Hans Conried, Gerald Mohr, Laird Cregar, Agnes Moorehead, Ray Collins

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/heritage-over-the-land.html b/site/partial/series/heritage-over-the-land.html index 0610da6..96f008c 100644 --- a/site/partial/series/heritage-over-the-land.html +++ b/site/partial/series/heritage-over-the-land.html @@ -126,9 +126,11 @@

Heritage Over the Land is a rich, compelling documentary series that captures the transformative rebirth of the American South. Through twelve captivating episodes, the show takes listeners on a journey from the region's humble beginnings, marked by cotton plantations, to its rapid industrialization. The series features a mix of interviews and narrative storytelling, effectively drawing in listeners and painting a vivid picture of the social, economic, and industrial revolution taking place in the South during the first half of the 20th century. Correspondent Henry Cassidy guides audiences through the powerful stories of ordinary Americans, their lives and struggles at the heart of this remarkable transformation.

The Alfred P. Sloan Foundation, established in 1934 by the President and CEO of General Motors, provided funding for Heritage Over the Land. This allowed writer and director William Allen Bales, together with producer Ms. Lee F. Painten, to create a high-quality and immersive listening experience. The show was broadcast on radio networks, and although details about its air dates and networks are not available, its powerful storytelling and vivid depiction of a transformative era in American history have ensured its continued resonance for listeners. -

Sources: +

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/high-adventure.html b/site/partial/series/high-adventure.html index b3f5e64..9549ec4 100644 --- a/site/partial/series/high-adventure.html +++ b/site/partial/series/high-adventure.html @@ -990,9 +990,11 @@

High Adventure was a radio show focused on romantic adventure and thrilling escapades. The series was often compared to popular programs like The Whistler, Suspense, and Escape. Aimed at a masculine audience, High Adventure was known for its realistic and highly believable storylines, with the episodes' outcomes frequently determined by the protagonist's strength of character. The show's episodes were underscored by music from the High Adventure orchestra and featured meticulously designed sound effects to create a highly immersive and atmospheric experience for the listener.

The show premiered on March 1, 1947, on the Mutual Network and eventually moved to NBC on January 21, 1949, where it aired on Sunday afternoons. It gained Old Spice Aftershave as a sponsor and continued to air until it was dropped by NBC at the end of the 1950 season. In January 1953, Mutual re-launched High Adventure with George Sanders as the narrator. The series broadcast both in the United States and South Africa, showcasing the widespread appeal of its thrilling adventures and realistic storytelling. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/hopalong-cassidy.html b/site/partial/series/hopalong-cassidy.html index 89e7d4d..22f7cd7 100644 --- a/site/partial/series/hopalong-cassidy.html +++ b/site/partial/series/hopalong-cassidy.html @@ -954,9 +954,12 @@

Hopalong Cassidy was a radio western program that depicted the adventures of Hopalong Cassidy, a character created by writer Clarence E. Mulford. Set at the Bar 20 Ranch, the show featured stories based on the popular movies and television series, which were themselves inspired by Mulford's series of novels. The adventures highlighted the unique personality, mannerisms, and unusual exploits of the main protagonist, who was portrayed as a civilized knight of the range and a man of morals. William Boyd voiced Hopalong Cassidy, while Andy Clyde co-starred as California Carson, his trusty sidekick from many of the later films.

The radio show aired from 1948 to 1952, with its initial broadcasts on the Mutual network before ending on CBS on December 27, 1952. The program gained popularity as it simultaneously ran alongside the television adaptation, the first of its kind on KTLA in Los Angeles. Hopalong Cassidy became one of the first multimedia sensations, with both the radio and television versions benefiting from the popularity of the original character and movies. The show featured a total of 66 movies across 35 years and was produced by Walter and Shirley White, Charles Henry, and directed by Ted Bliss. The show's success served as a platform for advertisers and sponsors who capitalized on the established following that the character had developed. -

Sources: +

+

Performers: William Boyd, Andy Clyde

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/horatio-hornblower.html b/site/partial/series/horatio-hornblower.html index acc4198..1d5bb65 100644 --- a/site/partial/series/horatio-hornblower.html +++ b/site/partial/series/horatio-hornblower.html @@ -486,9 +486,12 @@

Horatio Hornblower is a radio show based on the novels by C.S. Forester, focusing on the adventures of its protagonist, Captain Horatio Hornblower, as he serves the British Royal Navy during the Napoleonic era. The series is known for its historical accuracy, capturing the essence of naval life in the late 1700s through the mid-1800s with a realistic tone. Michael Redgrave stars as the titular character, portraying Hornblower's journey from a young, seasick midshipman to the Admiral of the Fleet of Britain's Royal Navy. The show consists of 30-minute episodes filled with action and adventure, showcasing the challenges and triumphs that Hornblower faces throughout his career.

The Adventures of Horatio Hornblower first aired on July 7, 1952, and was produced by Harry Towers through his Towers of London syndicate. Although the show was produced in England, it was not picked up by the BBC and was instead broadcasted in the United States. The show aired on CBS for its first run of 52 episodes, concluding on July 17, 1953. It was later rebroadcast by ABC in 1954 and the Mutual Broadcasting System in 1957. Apart from the radio series, Horatio Hornblower also became the subject of films, television programs, and a "biography" written by C. Northcote Parkinson, titled The True Story of Horatio Hornblower. -

Sources: +

+

Performers: Michael Redgrave

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/i-love-a-mystery.html b/site/partial/series/i-love-a-mystery.html index d703065..3166ca2 100644 --- a/site/partial/series/i-love-a-mystery.html +++ b/site/partial/series/i-love-a-mystery.html @@ -1521,9 +1521,12 @@

I Love a Mystery is an American radio drama series that follows the thrilling adventures of three friends who run the A-1 Detective Agency. The central characters, Jack Packard, Doc Long, and Reggie York, initially met as mercenary soldiers fighting the Japanese in China and later decided to form their detective agency in San Francisco. Their motto, "No job too tough, no adventure too baffling", served as a plot device to involve the trio in a wide variety of mystery, adventure, and supernatural horror stories, often taking them to exotic locales. The agency's secretary, Jerry Booker, was played by Gloria Blondell. Over the years, the main characters were portrayed by multiple talented actors, including Michael Raffetto, Russell Thorson, Jay Novello, Jim Bannon, John McIntire, Barton Yarborough, Jim Boles, Walter Paterson, and Tony Randall.

The show was initially sponsored by Fleischmann's Yeast and aired on the NBC West Coast network from January 16, 1939, to September 29, 1939, before moving to the full NBC network from October 2, 1939, to March 29, 1940. In 1940, the show expanded to 30-minute episodes on NBC Thursdays and continued on the Blue Network from September 30, 1940, to June 29, 1942. Procter & Gamble (for Oxydol and Ivory Soap) replaced Fleischmann's Yeast as the sponsor when the series was broadcast by CBS from March 22, 1943, to December 29, 1944. The show experienced revivals and title changes, including I Love Adventure on ABC in 1948 and a return to I Love a Mystery on the Mutual Broadcasting System from October 3, 1949, to December 26, 1952. -

Sources: +

+

Performers: Michael Raffetto, Russell Thorson, Jay Novello, Jim Bannon, John McIntire, Barton Yarborough, Jim Boles, Walter Paterson, Tony Randall, Gloria Blondell

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/in-the-name-of-the-law.html b/site/partial/series/in-the-name-of-the-law.html index d9ade1a..0bcf23c 100644 --- a/site/partial/series/in-the-name-of-the-law.html +++ b/site/partial/series/in-the-name-of-the-law.html @@ -126,9 +126,11 @@

In the Name of the Law was a true crime radio show that captivated audiences with thrilling stories taken from actual police case files. The engaging, short-run series followed the progress of police cases from around the country, ranging from murder to theft. Not only did the writers employ their vivid imaginations to create captivating dialogue that propelled the stories forward, but they also managed to capture the essence of the drama and suspense that accompanies intense criminal investigations. Fans of pre-1940s police dramas were drawn to In the Name of the Law, which shared similarities with other beloved shows like Honor the Law.

The year 1936 proved to be an eventful time for both the world at large and the world of radio, witnessing monumental firsts such as the Hindenburg launch and the establishment of the first baseball hall of fame class, as well as Billboard magazine publishing its inaugural music hit parade. Amid the excitement of the era, In the Name of the Law made its radio debut, leaving audiences spellbound. While information about its broadcast networks and production team remains scarce, the show can be compared to other popular true crime series like Dragnet, Nightwatch, and Tales of the Texas Ranger. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/incredible-but-true.html b/site/partial/series/incredible-but-true.html index 64571cb..3b3f3d1 100644 --- a/site/partial/series/incredible-but-true.html +++ b/site/partial/series/incredible-but-true.html @@ -738,9 +738,12 @@

Incredible, But True was a captivating radio show that focused on dramatizing unexplainable mysteries from various time periods and locations around the world. Enhanced with dramatic organ music, the program was narrated by Ken Nordine and featured a collection of intriguing tales that covered topics such as monsters, supernatural occurrences, and voices from beyond the grave. The show was not only engaging for the audience but also allowed listeners to share these thrilling stories with friends. The creative team behind the show occasionally took liberties with the stories, modifying their endings for a more dramatic effect, resulting in a collection of classic and entertaining episodes.

The show was broadcast on the Mutual Network between 1950 and 1951 and was available in two different formats: a 15-minute version and a three-minute version. It was produced by Unusual Features Syndicate and aired at various times during the week due to its syndicated nature. Incredible, But True did not have a fixed schedule, but its intriguing content ensured its success during its run. For those interested in exploring more of Ken Nordine's work, other relevant shows include Faces in the Window and Adventure Club. -

Sources: +

+

Performers: Ken Nordine

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/inner-sanctum-mysteries.html b/site/partial/series/inner-sanctum-mysteries.html index 54cc7d2..782a813 100644 --- a/site/partial/series/inner-sanctum-mysteries.html +++ b/site/partial/series/inner-sanctum-mysteries.html @@ -1305,9 +1305,12 @@

Inner Sanctum Mysteries was an anthology radio series that featured stories of mystery, terror, and suspense. With its tongue-in-cheek introductions, the show's format stood in sharp contrast to programs like Suspense and The Whistler. The early 1940s broadcasts opened with Raymond Edward Johnson introducing himself as "Your host, Raymond," in a sardonic voice, accompanied by a spooky melodramatic organ score played by Lew White. The program's familiar audio trademark was the eerie creaking door which opened and closed the broadcasts, and the show often mixed horror and humor in equal doses. Memorable episodes included "Terror by Night" and an adaptation of "The Tell-Tale Heart." Established stars such as Boris Karloff, Mary Astor, Helen Hayes, Peter Lorre, Paul Lukas, Claude Rains, Frank Sinatra, and Orson Welles lent their talents to the series.

Inner Sanctum Mystery aired from January 7, 1941, to October 5, 1952, with a total of 511 episodes broadcast. The show was first aired on the Blue Network and later moved to CBS in fall 1943. Lipton Tea sponsored the series from 1945, with cheery commercial spokeswoman Mary Bennett, aka the "Tea Lady," contrasting sharply with the macabre themes of the stories. Of more than 500 programs aired, only about 200 remain in circulation today. The series featured guest stars including Boris Karloff, who starred in over 15 episodes and occasionally returned afterward. Various leading actors and supporting players such as Santos Ortega, Mercedes McCambridge, Berry Kroeger, and Lawson Zerbe were also part of New York radio. -

Sources: +

+

Performers: Raymond Edward Johnson, Paul McGrath, Mary Bennett, Boris Karloff, Mary Astor, Helen Hayes, Peter Lorre, Paul Lukas, Claude Rains, Frank Sinatra, Orson Welles, Santos Ortega, Mercedes McCambridge, Berry Kroeger, Lawson Zerbe, Arnold Moss, Leon Janney, Mason Adams, Richard Widmark, Everett Sloane, Burgess Meredith, Agnes Moorehead, Ken Lynch, Anne Seymour

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/jeff-regan-investigator.html b/site/partial/series/jeff-regan-investigator.html index 76859f1..1313e2c 100644 --- a/site/partial/series/jeff-regan-investigator.html +++ b/site/partial/series/jeff-regan-investigator.html @@ -486,9 +486,12 @@

Jeff Regan, Investigator is a well-regarded example of the mid-century detective drama genre. The series features the eponymous protagonist, Jeff Regan, who works as a private investigator for the International Detective Bureau. The program's tone is characterized by the hard-boiled nature of Regan's character and his better relationship with the police as compared to his previous roles. The show's production involved the considerable talents of notable actors such as Jack Webb, Herb Butterfield, and Frank Nelson, as well as writers like E. Jack Neuman, Larry Roman, William Froug, and William Fifield.

The series was broadcast between July 10, 1948, and August 27, 1950, but was on hiatus for a year. Premiering on the CBS network, the first run ended on December 18, 1948, followed by the second run beginning on October 5, 1949. A total of several dozen episodes aired, including multiple incarnations of the series; Jack Webb initially helmed the show as the lead actor, followed by Frank Graham and Paul Dubov. Webb left the series after a pay dispute, moving on to star in Dragnet. The show ultimately ended after the tragic death of Frank Graham at the age of 35. -

Sources: +

+

Performers: Jack Webb, Frank Graham, Paul Dubov

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/jerry-at-fair-oaks.html b/site/partial/series/jerry-at-fair-oaks.html index 4404b93..7d92a85 100644 --- a/site/partial/series/jerry-at-fair-oaks.html +++ b/site/partial/series/jerry-at-fair-oaks.html @@ -603,9 +603,11 @@

Jerry at Fair Oaks follows the delightful adventures of orphaned hero Jerry Dugan as he transitions from his life in the circus to his experiences at Fair Oaks School. With a runtime of fifteen minutes per episode, the program is ideal for even very young children to enjoy. This captivating series centers around Jerry Dugan's journey and adventures as he begins his life at Fair Oaks School, full of new experiences, friendships, and challenges.

Originally syndicated by Bruce Eells in 1938, Jerry at Fair Oaks is a juvenile serial that focuses on the importance of structure, instruction, and discipline for the growth and development of a young boy like Jerry. The school's traditions, athletics programs, and facilities provide him with everything he could need or want. This radio show consists of 65 episodes, with over 15 hours of captivating content. Jerry at Fair Oaks is a follow-up program to the earlier series, Jerry of the Circus. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/jerry-of-the-circus.html b/site/partial/series/jerry-of-the-circus.html index b1ec6dd..57e3fef 100644 --- a/site/partial/series/jerry-of-the-circus.html +++ b/site/partial/series/jerry-of-the-circus.html @@ -1170,9 +1170,12 @@

Jerry of the Circus is a heartwarming and delightful children's series that follows the adventures of Jerry Dugan and his dog, Rags, as they join Sam Randall's Circus after the death of Jerry's family. With a note from his father claiming that Jerry "has the circus in his blood," the young orphan and his dog quickly become members of the Randall Brothers Circus. The show is 15 minutes in length and introduces a diverse and engaging cast of characters such as Bumps the Clown, Patsy the trapeze artist, Carmen Bandini the tightrope walker, and Major Mike the self-proclaimed star attraction on the midway.

The radio series was syndicated in 1937 and presented in 130 15-minute episodes, with 128 episodes still in existence today. Jerry's adventures continued in the 1937 serial, Jerry at Fair Oaks. Among the noteworthy cast members are Lindsay McHarrie as Mr. Randall, Howard McNear as Bumps the Clown, Elvia Allman as Patsy, and Buddy Duncan as Major Mike. The show was a promotional tie-in for a book cover that was used during the late 1930s, and it has been compared to other popular 1930s-era radio programs intended for juvenile audiences, such as The Cinnamon Bear and Land of the Lost. -

Sources: +

+

Performers: Lindsay McHarrie, Howard McNear, Elvia Allman, Buddy Duncan

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/john-steele-adventurer.html b/site/partial/series/john-steele-adventurer.html index 16f6fd0..467b454 100644 --- a/site/partial/series/john-steele-adventurer.html +++ b/site/partial/series/john-steele-adventurer.html @@ -459,9 +459,12 @@

John Steele, Adventurer is a radio show that first aired in 1949 and is known for its thriller and drama elements. The show featured Don Douglas as John Steele, a roving adventurer and thrill seeker who held various jobs in exotic locations such as country sheriff, special agent in Turkey, and ship's captain. Narrated by a friend of Steele's, the series included eerie background sounds of jungles and deserts, with hard and fast-paced action stories that appeared to be inspired by popular action magazines like All-Story and Argosy. The show deployed innovative techniques such as using an echo chamber to represent a character's thoughts instead of spoken words, adding to the moving and adventurous tone of the series.

The show made its debut on the Mutual Broadcasting System in 1949 and continued until 1956. Though not considered a major force in the world of radio, it offered great entertainment and gathered a loyal fan following. The series featured notable actors such as John Larkin, Jack Edwards, and Bryna Raeburn in supporting roles, along with announcer Ted Mallie and directors Elliot Drake, Sylvan Levin, and Doc Whipple. John Steele, Adventurer's legacy lives on as an engaging, adventure-filled radio show that captivated audiences during its time on air. -

Sources: +

+

Performers: Don Douglas, John Larkin, Bryna Raeburn, Jack Edwards

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/jonathan-thomas-and-his-christmas-on-the-moon.html b/site/partial/series/jonathan-thomas-and-his-christmas-on-the-moon.html index aeb6ab9..db13c76 100644 --- a/site/partial/series/jonathan-thomas-and-his-christmas-on-the-moon.html +++ b/site/partial/series/jonathan-thomas-and-his-christmas-on-the-moon.html @@ -252,9 +252,11 @@

Jonathan Thomas and His Christmas on the Moon is a captivating children's series that follows the adventures of six-year-old Jonathan Thomas as he tries to rescue his teddy bear, Guz, and save Santa Claus from the Squeebubblians. The story unfolds on Christmas Eve when Jonathan Thomas follows his teddy bear and two elves up a moonbeam, where he meets the Man in the Moon and his horse Gorgonzola. Accused of kidnapping Santa Claus, the group sets out on a thrilling quest to save him before Christmas Day. Along the way, they encounter an evil witch, a dragon with thirteen tails, and several characters from Lewis Carol's classic Alice in Wonderland.

Produced in 1938, Jonathan Thomas and His Christmas on the Moon aired daily between Thanksgiving and Christmas. Despite being well-written, the series did not achieve the same commercial success as The Cinnamon Bear or Jump Jump and the Ice Queen, partly because it did not have a toy promotion sponsor. The best way to enjoy this delightful Christmas serial is to listen to one episode per day, especially when shared with children during the holiday season. The episodes can be shared over video chat or attached to daily emails for parents who are away from their children, bringing them closer to their loved ones during the holidays. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/journey-into-space.html b/site/partial/series/journey-into-space.html index ee44400..4131e23 100644 --- a/site/partial/series/journey-into-space.html +++ b/site/partial/series/journey-into-space.html @@ -423,9 +423,12 @@

Journey Into Space is a British radio sci-fi programme that was the last UK radio show to attract a larger evening audience than television. Created by BBC producer Charles Chilton, the series was translated into 17 different languages and broadcast around the world. Known for its dramatic cliffhangers, the premise of this captivating show involves space exploration, with various series revolving around journeys to different planets.

The radio show ran from 1953 to 1958, with a total of 72 episodes in four series. It aired on the BBC Light Programme and is currently syndicated on BBC Radio 4 Extra. The original recordings were thought to be lost, but in 1986, a set of misfiled Transcription Service discs was discovered, allowing the BBC to re-broadcast the show in the late 1980s and release copies on audio cassette, CD, and internet download. Notable members of the cast included Andrew Faulds, Guy Kingsley Poynter, Bruce Beeby, Don Sharp, David Williams, and David Kossoff, among others. -

Sources: +

+

Performers: Andrew Faulds,Guy Kingsley Poynter,Bruce Beeby,Don Sharp,David Williams,David Kossoff,Alfie Bass,David Jacobs

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/jump-jump-and-the-ice-queen.html b/site/partial/series/jump-jump-and-the-ice-queen.html index 9c181b0..7f6b4aa 100644 --- a/site/partial/series/jump-jump-and-the-ice-queen.html +++ b/site/partial/series/jump-jump-and-the-ice-queen.html @@ -243,9 +243,12 @@

Jump Jump and the Ice Queen is a delightful children's radio show that follows the adventures of a 3-inch tall elf named Jump Jump. Created by the writing team of Mary McConnell and Harry Hickox, the show was initially a series of animated vignettes before evolving into a 25-episode serial centered around the Christmas season. The heartwarming and whimsical stories feature Jump Jump and a cast of characters including Tim, Mary Holiday, Achi Paggli the clown, Sleepy Slim the lazy lion, and the Poet, as they work together to save Christmas from the evil Ice Queen who has kidnapped Santa's reindeer. The show's intimate and engaging style is further enhanced by the use of voice alteration for Jump Jump, creating a unique and memorable character for listeners of all ages.

The radio show was first broadcast in 1947 and aired on radio stations across America and Canada. A total of 24 episodes were planned, with the intention of being played daily leading up to Christmas, following a similar format to previous shows like The Cinnamon Bear and Jonathon Thomas and his Christmas On The Moon. Jump Jump and the Ice Queen also had a merchandise tie-in, featuring hand-made dolls created by the Mattel Toy Company, packaged in boxes designed to resemble the Holiday House featured in the show. The show's episodes were written and performed by McConnell and Hickox, along with Johnny McGovern as Tim and Jump Jump, while Bob Mitchell provided the Hammond organ music that imbued the show with a warm and festive atmosphere. Jump Jump and the Ice Queen remains a charming piece of radio history, providing nostalgic holiday entertainment for a modern audience. -

Sources: +

+

Performers: Mary McConnell, Harry Hickox, Johnny McGovern, Bob Mitchell

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/let-george-do-it.html b/site/partial/series/let-george-do-it.html index a2397e3..c9b4fd4 100644 --- a/site/partial/series/let-george-do-it.html +++ b/site/partial/series/let-george-do-it.html @@ -1818,9 +1818,12 @@

Let George Do It is a detective drama radio series that follows the adventures of private investigator George Valentine, who uses a classified ad to draw clients. The earliest episodes had a sitcom feel, complete with a studio audience laughing at the not-so-funny scripts, but the show quickly shifted to a suspenseful, tough guy private eye series. Valentine is assisted by his secretary Claire Brooks, aka Brooksie, and often interacts with other characters like Brooksie's kid brother Sonny, Lieutenant Riley, and elevator man Caleb. The show's tone is characterized by witty banter between George and Brooksie, which can be compared to later TV series like "Hart to Hart," "Moonlighting," and "Remington Steele."

Produced by Owen and Pauline Vinson, the radio show aired from 1946 to 1954, first on the West Coast Mutual Broadcasting System from October 18, 1946, to September 27, 1954, and then on transcriptions in New York from January 20, 1954, to January 12, 1955. It was initially sponsored by Standard Oil, and the show featured a full orchestra for background music before budget cuts forced the use of an organ. Bob Bailey starred as George Valentine for most of its run, with Olan Soule taking over the role in 1954. Overall, Let George Do It was well-regarded during its time, and it proved to be a stepping stone for Bob Bailey, who went on to star in the popular series "Yours Truly, Johnny Dollar." -

Sources: +

+

Performers: Bob Bailey, Olan Soule, Frances Robinson, Virginia Gregg, Lillian Buyeff, Eddie Firestone, Wally Maher, Joseph Kearns

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/life-with-luigi.html b/site/partial/series/life-with-luigi.html index 16889f2..8378688 100644 --- a/site/partial/series/life-with-luigi.html +++ b/site/partial/series/life-with-luigi.html @@ -1233,9 +1233,12 @@

Life with Luigi is a radio situation comedy series focusing on Luigi Basco, a newly-arrived Italian immigrant in Chicago, and his experiences adapting to American culture. The show is a heartwarming blend of humor and human-interest stories, as Luigi attends night school classes with other immigrants from different countries and deals with the various schemes of his landlord, Pasquale. The series is rich in character-driven comedy, with the lead role of Luigi expertly portrayed by J. Carroll Naish. Using the framing device of Luigi narrating a letter to his mother back in Italy, Life with Luigi balances lighthearted fun with the poignant elements of immigration and adapting to a new life.

The show aired from September 21, 1948, to March 3, 1953, primarily on CBS Radio. Over the course of its run, it featured 114 episodes, with General Foods and then the William Wrigley Jr. Co. as sponsors. Life with Luigi was also adapted into a short-lived television series that aired from September 22, 1952. Although the series had a successful run and competed with heavyweights like The Bob Hope Show, it faced criticism regarding the portrayal of ethnic stereotypes and ultimately went off the air in 1953. -

Sources: +

+

Performers: J. Carroll Naish, Hans Conried, Alan Reed, Jody Gilbert, Mary Shipp, Gil Stratton, Joe Forte, Ken Peters

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/light-crust-doughboys.html b/site/partial/series/light-crust-doughboys.html index 8b0a96c..17a4916 100644 --- a/site/partial/series/light-crust-doughboys.html +++ b/site/partial/series/light-crust-doughboys.html @@ -126,9 +126,12 @@

The Light Crust Doughboys was a radio show featuring a Western swing band from Texas that achieved peak popularity during the years leading up to World War II. Created to promote Lightcrust Dough Flour, the show had the Doughboys dressing up like bakers in white uniforms and poofy hats to perform their 1940s era country music. The group, formed in 1929, saw numerous changes in its lineup, including well-known Western swing musicians Bob Wills and Milton Brown. The show's format often included the Doughboys joking around, hooting, and hollering between songs.

Broadcasting began in the early 1930s, with the Doughboys touring for many years until 1942 when several members went off to war. After a hiatus, they resumed broadcasting from 1946 until 1950. W. Lee "Pappy" O'Daniel, the original manager of the Lightcrust Doughboys, was eventually fired in 1935 due to his overbearing nature and dislike for the band's "hillbilly music." He then formed a new band, Pat O'Daniel and his Hillbilly Boys, which went on to have its own radio show. -

Sources: +

+

Performers: Bob Wills, Milton Brown, Tommy Duncan, Cecil Brower, John Parker, Kenneth Pitts

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/lightning-jim.html b/site/partial/series/lightning-jim.html index f0d07d3..42e2066 100644 --- a/site/partial/series/lightning-jim.html +++ b/site/partial/series/lightning-jim.html @@ -387,9 +387,11 @@

Lightning Jim follows the story of U.S. Marshal Lightning Jim Whipple, his trusty horse Thunder, and his deputy, Whitey Larson, as they attempt to portray the history of how the west was won. The show includes adventures with famous individuals from western history, such as Wild Bill Hickock. While it touches on significant historical events, it includes stereotypical portrayals of Native Americans and the history of the Union-Pacific Railroad, among other Western-related subjects. The show originally began as The Adventures of Lightning Jim and has an entertaining yet informative tone catered to western radio fans.

The program originally premiered in the 1940s as a West Coast show, and later returned as a syndicated ZIV series in the 1950s, resulting in a total of 98 radio episodes produced. This collection provides the few surviving episodes of Lightning Jim and offers a glimpse into the history and cultural influence of the time. Although there isn't much information available about the actors and production team, it remains a valuable resource and a delight for fans of old Western radio shows. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/lights-out.html b/site/partial/series/lights-out.html index 5093a7d..1efb2b4 100644 --- a/site/partial/series/lights-out.html +++ b/site/partial/series/lights-out.html @@ -792,9 +792,11 @@

Lights Out was an American radio show devoted to horror and supernatural stories, providing listeners with a thrilling and eerie experience. The series, initially conceived as a midnight mystery serial, shifted to an anthology format emphasizing crime thrillers and the supernatural after its success. Created by Wyllis Cooper, the show's stories were characterized by grisly tales with dark, tongue-in-cheek humor. Lights Out was known for experimenting with advanced radio techniques, such as stream of consciousness and first-person narration. The program utilized distinct sound effects to enhance the horror experience, providing realistic simulations that were unique to the drama.

Debuting in 1934, Lights Out aired on various networks until the summer of 1947, eventually transitioning to television. The series is considered one of the earliest radio horror programs, predating Suspense and Inner Sanctum. Cooper's run on the show saw the creation of around 120 episodes, with the show continuing under the direction of Arch Oboler after June 1936. Chicago's pool of creative talent greatly benefited the show, and the series' sound effects were often carefully crafted and experimented with to achieve the desired result. Among the notable actors who participated in the series were Sidney Ellstrom, Art Jacobson, and Betty Lou Gerson. -

Sources: +

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/love-story-magazine.html b/site/partial/series/love-story-magazine.html index 5b59508..894c0ff 100644 --- a/site/partial/series/love-story-magazine.html +++ b/site/partial/series/love-story-magazine.html @@ -252,9 +252,11 @@

Love Story Magazine was a popular program for women that showcased a series of dramatic and romantic tales. Filled with captivating stories of loves lost and found, terrifying treacheries, broken hearts, tearful reunions, Prince Charmings, and ladies spurned, the show aimed to capture the hearts of its listeners. The series was known for its smarmy, engaging, and heartwarming stories that provided an emotional rollercoaster for its audience, making it a perfect choice for those who enjoy melodramatic tales.

Broadcast between 1937 and 1938, Love Story Magazine aired for a short run of 26 episodes. The show featured rare recordings of dramatized stories from the pages of Love Story Magazine, bringing them to life for listeners with the help of Frank Knight as the announcer. These stories were the highlight of the series, offering an engaging and romantic experience sure to set hearts afire and roll tears along like the Swanee River. Despite its short-lived run, Love Story Magazine has left a lasting impact as a memorable piece of radio history, showcasing the power of storytelling and the importance of love stories in popular culture. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/luke-slaughter-of-tombstone.html b/site/partial/series/luke-slaughter-of-tombstone.html index e520978..97fbf46 100644 --- a/site/partial/series/luke-slaughter-of-tombstone.html +++ b/site/partial/series/luke-slaughter-of-tombstone.html @@ -162,9 +162,12 @@

Luke Slaughter of Tombstone is a western drama radio series centered around the adventures of Luke Slaughter, a Civil War cavalryman who turns to cattle ranching in post-war Arizona territory near Fort Huachuca. The series features a gritty, hard-boiled tone, with Sam Buffington starring as the titular character. Together with his sidekick, Wichita, Luke Slaughter faces various adversities, such as murderers, swindlers, cheats, and robbers, as they try to run their cattle business. The show boasts original characters and plotlines crafted with the creative vision of famed radio producer and director, William N. Robson.

The series aired from February 23 through June 15, 1958, on CBS, and only 16 episodes were broadcast due to increasing competition from television. It was part of a lineup with other western series, such as Frontier Gentleman and Have Gun Will Travel, which took Luke Slaughter of Tombstone's time slot after only a brief run. In addition to Buffington as the lead, Junius Matthews portrayed the character of Wichita. At the time, Buffington was only 27 years old, and his performance was often compared to William Conrad's Matt Dillon on Gunsmoke. -

Sources: +

+

Performers: Sam Buffington, Junius Matthews

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/lum-and-abner.html b/site/partial/series/lum-and-abner.html index 2fc4ba4..e404dfd 100644 --- a/site/partial/series/lum-and-abner.html +++ b/site/partial/series/lum-and-abner.html @@ -1629,9 +1629,12 @@

Lum and Abner is a popular American radio comedy show that was created by Chester Lauck and Norris Goff. The show's premise is based on life in the small town of Waters, Arkansas, where Lauck and Goff grew up. The series features Lauck as Columbus "Lum" Edwards and Goff as Abner Peabody, co-owners of the Jot 'em Down Store in the fictional town of Pine Ridge, Arkansas. The two characters perform as a double act, with Lum generally playing the straight man to Abner's attempts to break free from Lum's influence. The pair are constantly stumbling upon moneymaking ideas only to find themselves fleeced by nemesis Squire Skimp before finally redeeming themselves. The tone and style of the radio show is primarily hillbilly humor, with a live house band playing string music to complement this theme.

The radio show aired from 1931 to 1954 and was broadcast on various radio networks, including NBC, Mutual, CBS, and ABC. Over its lifetime, Lum and Abner aired on all four major radio networks, and the show's format changed several times. In 1948, the show switched from a 15-minute "comedic soap opera" to a 30-minute self-contained show, but this change proved unpopular and the series went off the air in 1950. The revived show was discontinued in 1954 due to competition from television and Goff's failing health. The program broadcast more than 5,000 episodes, of which over 1,630 still exist today. During its run, Lum and Abner was sponsored by several prominent companies, such as Quaker Oats, The Ford Dealers of America, Horlicks Malted Milk, Postum cereal, and Alka-Seltzer. -

Sources: +

+

Performers: Chester Lauck, Norris Goff

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/lux-radio-theatre.html b/site/partial/series/lux-radio-theatre.html index 34e84d8..e6aa83c 100644 --- a/site/partial/series/lux-radio-theatre.html +++ b/site/partial/series/lux-radio-theatre.html @@ -4689,9 +4689,12 @@

Lux Radio Theatre was a drama anthology radio show that featured adaptations of successful Broadway plays and films. The program was broadcast on multiple radio networks and offered hour-long presentations performed live before studio audiences. Lux Radio Theatre's episodes included a mix of drama, comedy, and action, often featuring the original stars of the adapted movies and plays. The show provided a record of some of the most important entertainment events in American theatre and film during its run.

The show was broadcast from 1934 to 1955, spanning 21 seasons and airing a total of 927 episodes. It aired on the NBC Blue Network, CBS Radio Network, and NBC Radio. The broadcast transitioned from New York to Hollywood in 1936, marking a shift from adapting Broadway plays to focusing on film adaptations. Lux Radio Theatre was also notable for its sponsor, Unilever, which promoted its Lux brand of soap during the shows. The program's hosts included Cecil B. DeMille, William Keighley, and Irving Cummings, and featured notable actors such as Marlene Dietrich and Clark Gable. Lux Radio Theatre later continued on television as Lux Video Theatre until 1957. -

Sources: +

+

Performers: Miriam Hopkins, John Boles, Marlene Dietrich, Clark Gable, Myrna Loy, William Powell, and many more

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/magic-island.html b/site/partial/series/magic-island.html index 6731a8e..c154c1b 100644 --- a/site/partial/series/magic-island.html +++ b/site/partial/series/magic-island.html @@ -1188,9 +1188,12 @@

Magic Island was a syndicated radio serial aimed at a juvenile audience that first aired in 1936. The show consisted of 130 twelve-minute episodes with a storyline centered around a wealthy woman searching for her long-lost daughter. The daughter is eventually found living on a man-made island that can submerge to avoid detection. Primarily targeted at small children, the series focuses on the main characters' subsequent adventures on the mysterious island, featuring a science-fantasy theme.

Magic Island was initially broadcast on Hollywood station KNX in 1935, before being syndicated by Atlas Radio Corp. in 1937. The show aired on various radio networks through the 1940s, with all 130 fifteen-minute episodes having survived till today. The series starred Sally Creighton as Patricia Gregory, Rosa Barcelo as Joan Gregory, Tommy Carr as Jerry Hall, and Will H. Reynolds as Capt. Tex Bradford. The show was produced and written by Perry (Percy C.) Crandall, who also acted in the cast and served as the program's announcer. Crandall passed away in January 1939 at the age of 38, just as the recorded series was gaining traction as a transcription feature. -

Sources: +

+

Performers: Sally Creighton, Rosa Barcelo, Tommy Carr, Will H. Reynolds

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mama-blooms-brood.html b/site/partial/series/mama-blooms-brood.html index b9bcbb0..becc523 100644 --- a/site/partial/series/mama-blooms-brood.html +++ b/site/partial/series/mama-blooms-brood.html @@ -702,9 +702,12 @@

Mama Bloom's Brood is a unique radio series that blends elements of soap opera and situation comedy, resulting in a lighthearted and humorous plot. The story revolves around Papa Bloom (Jake) and Mama Bloom (Becky), who sell their kneepants factory and plan a vacation with their daughters Yetta and Sarah, and sons-in-law Harold and Sidney. Their journey takes them on an automobile trip to Hollywood, where they encounter various adventures and amusing situations. Mama Bloom, with her heavy Yiddish accent and distinctive way of speaking, becomes a delightful central character, drawing comparisons to Molly from The Goldbergs.

The show was syndicated in 1934 by Broadcasters Program Syndicate/Bruce Eells and Associates, with several episodes still existing today. Over the years, Mama Bloom's Brood has gained recognition and comparison to other popular radio shows, such as The Goldbergs. It has also been featured in the book 'Radio and the Jews: The Untold Story of How Radio Influenced America's Image of Jews, 1920s-1950s' by David S. and Susan Siegel. The series is often praised for its representation of Jewish-American families and culture, with parallels drawn to other related programs like The People Take the Lead and Eternal Light. -

Sources: +

+

Performers: Jake, Becky, Yetta, Sarah, Harold, Sidney

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mark-trail.html b/site/partial/series/mark-trail.html index 82f126e..b59b36e 100644 --- a/site/partial/series/mark-trail.html +++ b/site/partial/series/mark-trail.html @@ -369,9 +369,12 @@

Mark Trail was an American radio series that included two different adaptations based on the popular comic strip by Ed Dodd. The series aimed at a young audience and revolved around adventure stories, following the hero Mark Trail, a forest ranger who battled the elements and fought enemies of man and nature, while also teaching his friends about the wilderness. Each episode featured thrilling adventures and combined the qualities of J. Edgar Hoover and Robin Hood. This format provided intelligent entertainment to many children and captured their imaginations by giving them the chance to learn about wild America.

The first Mark Trail series aired on the Mutual Broadcasting System from January 30, 1950, to June 8, 1951, with a total of 174 episodes. The show was sponsored by Kellogg's Pep cereal. The second series aired on ABC Radio from September 18, 1950, to June 27, 1952, with a total of 125 episodes. While only a handful of the 15-minute episodes from the second series are known to have survived, the Minneapolis-St. Paul public radio station KFAI aired another Mark Trail Radio Theatre series from 1991 to September 2002. This series included 228 weekly installments and 17 adventures. Matt Crowley, Staats Cotsworth, and John Larkin were notable actors who played Mark Trail, while Jackson Beck provided the announcements and was known for his role as an announcer for the classic Superman serial on the radio. -

Sources: +

+

Performers: Matt Crowley, John Larkin, Staats Cotsworth, Jackson Beck

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/matinee-theater.html b/site/partial/series/matinee-theater.html index e6f9ed8..9ff544b 100644 --- a/site/partial/series/matinee-theater.html +++ b/site/partial/series/matinee-theater.html @@ -216,9 +216,12 @@

Matinee Theater was a dramatic radio show which aimed at providing quality content for its Sunday afternoon listeners. Initially a continuation of the series Dangerously Yours, it was renamed to expand its range of stories. The program featured various classic and contemporary works, such as "Beautiful Dreamer", "Wuthering Heights", "Jane Eyre", and "The Scarlet Pimpernel". Victor Jory starred alongside different female leads to bring these stories to life, offering a mix of drama, love stories, and swashbuckling adventure tales to entertain audiences.

The show first aired on October 22, 1944, and the final broadcast took place on April 8, 1945. It was sponsored throughout by The Vick Chemical Company. Matinee Theater later inspired an American anthology television series with the same name, which aired on NBC during the Golden Age of Television from October 31, 1955, to June 27, 1958. The TV series was known for its minimal sets and costumes, and was the first daily hour-long dramatic series on television. The radio show's influence and success can be seen through these adaptations and its legacy in dramatic entertainment. -

Sources: +

+

Performers: Victor Jory

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/meet-corliss-archer.html b/site/partial/series/meet-corliss-archer.html index 0fa2f71..1769862 100644 --- a/site/partial/series/meet-corliss-archer.html +++ b/site/partial/series/meet-corliss-archer.html @@ -108,9 +108,12 @@

Meet Corliss Archer is an American radio program that centers on the teenage life of 15-year-old Corliss Archer, her family, and her boyfriend, Dexter Franklin. The show focuses on the comedic situations and challenges that Corliss faces with her family and friends, as well as her father's pursuit of his eternal war with the female race. The show's characters include Corliss's parents, her good friend Mildred Ames, and her rival Betty Cameron. The writing is lighthearted, breathless, and charming, with Corliss and Dexter's relationship at the core of the series. The show is known for its humorous catchphrases, such as Dexter's infamous "Holy cow!" and his braying call, "Heyyyy, Corrrrrliiiiiss!"

Meet Corliss Archer aired from January 7, 1943, to September 30, 1956, with stints on different radio networks, including CBS, NBC, and ABC. Throughout its long run, fewer than 24 episodes are known to still exist today. The show was subsequently adapted for other media formats, including a comic book series in 1948, as well as television series in 1951, 1952, and a syndicated telefilm series in 1954 and 1955, produced by Ziv Television Programs. A live telecast of Kiss and Tell with Robin Morgan as Corliss and Warren Berlinger as Dexter also aired on The Alcoa Hour on August 5, 1956. The comic book series featuring artwork by Al Feldstein is now remembered mostly for its good girl art covers and tie-ins with the radio and film adaptations. -

Sources: +

+

Performers: Priscilla Lyon, Janet Waldo, Lugene Sanders, Bill Christy, Sam Edwards, Bob Bailey, Fred Shields, Frank Martin, Irene Tedrow, Monty Margetts, Gloria Holden, Bebe Young, Barbara Whiting, Tommy Bernard, Kenny Godkin, Delores Crane, Ann Baker, Mary Brian, Robin Morgan, Warren Berlinger

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/melody-ranch.html b/site/partial/series/melody-ranch.html index feb40bf..dc47a59 100644 --- a/site/partial/series/melody-ranch.html +++ b/site/partial/series/melody-ranch.html @@ -693,9 +693,12 @@

Melody Ranch is a Western variety radio show centered around the talent of singing cowboy Gene Autry. Each episode of the program features a Western adventure filled with music, comedy, and action. The show is set in Gene Autry's home at Melody Ranch, in the San Fernando Mountains. The music is heavily focused on a western style, with accordion accents and Autry's own "Cowboy Classic." Each episode also includes a 10 to 15-minute story, fully dramatized and detailing a recent adventure that occurred at the ranch.

The show aired between 1940 and 1956, with a two-year interruption during which Gene Autry enlisted in the United States Army to serve in World War II. Airing on the CBS radio network, the show's entire run was sponsored by Doublemint gum. The theme song for the program was "Back in the Saddle Again." Notably, two episodes of the program deviated from the typical format. One featured the renaming of Berwyn, Oklahoma, to Gene Autry, Oklahoma, airing as part of the ceremony. The other was the July 26, 1942 episode when Autry took his oath of office to join the United States Army Air Forces. -

Sources: +

+

Performers: Gene Autry, Wendell Niles, Tom Hanlon, Lou Crosby, Charles Lyon, Pat Buttram

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/mercury-theatre.html b/site/partial/series/mercury-theatre.html index 342ce72..7879541 100644 --- a/site/partial/series/mercury-theatre.html +++ b/site/partial/series/mercury-theatre.html @@ -396,9 +396,12 @@

Mercury Theatre on the Air is a radio series that features live radio dramas created and hosted by Orson Welles. The show, which runs for 60 minutes, showcases classic literary works performed by Welles's Mercury Theatre repertory company. The show's tone exhibits a unique and exceptional style through the acting of various performers and the compositions of Bernard Herrmann. The format of the show focuses on classic literature, such as "Treasure Island," "The Count of Monte Cristo," and "Dracula."

The series premiered on July 11, 1938, and aired for a total of 22 episodes. It was broadcast on the CBS Radio network, airing on Mondays at 9 pm ET before moving to Sundays at 8 pm. The show made headlines with its "The War of the Worlds" broadcast on October 30, which caused panic among listeners, leading Campbell Soup Company to sign on as a sponsor. Mercury Theatre on the Air made its last broadcast on December 4, and The Campbell Playhouse took its place on December 9. The show starred numerous notable actors such as Virginia Welles, Agnes Moorehead, Joseph Cotten, and Everett Sloane. -

Sources: +

+

Performers: Orson Welles, William Alland, Edgar Barrier, Ray Collins, Joseph Cotten, George Coulouris, Arlene Francis, Alice Frost, Martin Gabel, Agnes Moorehead, Frank Readick, Elliott Reid, Everett Sloane, Howard Smith, Paul Stewart, Karl Swenson, Virginia Welles, Richard Wilson, Eustace Wyatt

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/michael-shayne.html b/site/partial/series/michael-shayne.html index 6f83207..71480ba 100644 --- a/site/partial/series/michael-shayne.html +++ b/site/partial/series/michael-shayne.html @@ -324,9 +324,12 @@

Michael Shayne followed the adventures of a hard-boiled private detective, Mike Shayne, created by American crime novelist Brett Halliday. This gumshoe character was a reckless, red-headed Irishman who fought crime with a license and an attitude, adopting a loner persona akin to those of Mike Hammer and Phillip Marlowe. The show explored the darker streets of the American dream, focusing on adult themes like drugs and middle-class adultery. Mike was a believable and popular private eye, especially among post-WWII veterans who had experienced their fair share of violent morality. The radio version of the show started with Wally Maher in the title role, and its popularity led to continuous adaptations and revisions.

The radio show was broadcast from 1944 to 1953, during which time it aired on various networks and with different actors portraying Mike Shayne. The first radio version, Michael Shayne, Private Detective, debuted on the Don Lee Network in 1944, exclusive to the western United States. In 1946, the show was aired nationally on the Mutual network, followed by another national run in 1948 with a new title, The New Adventures of Michael Shayne, this time starring movie star Jeff Chandler. The show had another run in 1952-53, again titled as Mike Shayne, Private Detective, featuring Donald Curtis and Robert Sterling in the title role. The radio show was based on Halliday's novels featuring the character Mike Shayne, with almost three dozen episodes available for listening. In the early 1960s, a TV adaptation of Michael Shayne was produced with Richard Denning playing the lead role. -

Sources: +

+

Performers: Wally Maher, Louise Arthur, Joe Forte, Cathy Lewis, Jeff Chandler, Donald Curtis, Robert Sterling, Vinton Hayworth, Judith Parrish, Richard Denning

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mind-your-manners.html b/site/partial/series/mind-your-manners.html index e3e0e3b..edb619f 100644 --- a/site/partial/series/mind-your-manners.html +++ b/site/partial/series/mind-your-manners.html @@ -117,9 +117,11 @@

Mind Your Manners is a unique radio show that provides etiquette training for children and teenagers. The show features a rotating panel of young individuals between the ages of 8 and 18 who answer questions sent in by listeners. The questions address a variety of topics, such as how to start a conversation at a dance, whether two 16-year-old girls should go on a cross-country road trip, and whether an eleven-year-old should be smoking and drinking. Through these interactions, the show offers gentle reminders of manners and etiquette, harkening back to a simpler time.

Originally airing during the golden age of radio, Mind Your Manners was broadcast on numerous networks over the years. The show is known to have a significant number of episodes, although the exact number of episodes that aired and still exist today is uncertain. While there is no direct trivia or information available regarding TV adaptations or other media formats, the show shares similarities with other programs from the time period, such as The Doorway to Life, which features child-rearing advice from the 1940s, Are these Our Children?, a show about children lacking manners, and Quiz Kids, which highlights the intelligence and wit of young children. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/molle-mystery-theatre.html b/site/partial/series/molle-mystery-theatre.html index f9917b0..8a98774 100644 --- a/site/partial/series/molle-mystery-theatre.html +++ b/site/partial/series/molle-mystery-theatre.html @@ -657,9 +657,12 @@

Molle Mystery Theatre was a 30-minute anthology radio program that focused on stories of mystery and suspense. The show featured a distinguished "annotator" named Geoffrey Barnes, who served as an expositor, providing plot development and background information when needed. Listeners were introduced to various mysteries and their underlying crimes within each script, with the protagonistic role fluctuating throughout the series. The program showcased quality production values and performances from up-and-coming actors.

Initially airing on NBC from 1943 to 1948, Molle Mystery Theatre then transitioned to CBS where the format changed to revolve around the character Inspector Hearthstone. Over its nine-year run, the program aired under various titles, such as Mystery Theatre, Molle Mystery Theatre, Frank and Anne Hummert's Mystery Theatre, Hearthstone of The Death Squad, Inspector Mark Saber of The Homicide Squad, and Mark Saber Mysteries. Notable sponsors included Ironized Yeast, Energene, Bayer Aspirin, Sterling Drug, and Molle. -

Sources: +

+

Performers: Joseph Julian, Anne Seymour, Raymond Edward Johnson, Peter Lorre, Bernard Lenrow, Roc Rogers, Richard Widmark, Budd Collyer, Martin Gable, Mandel Kramer, Elspeth Eric, Frank Lovejoy, Alfred Shirley, Robert Carroll, James Westerfield

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/moon-over-africa.html b/site/partial/series/moon-over-africa.html index df3d60a..abe30c3 100644 --- a/site/partial/series/moon-over-africa.html +++ b/site/partial/series/moon-over-africa.html @@ -252,9 +252,11 @@

Moon Over Africa is a mysterious radio series believed to have originated in South Africa. The show consists of 26 episodes, each lasting 15 minutes, and follows the thrilling expedition of Professor Anton Edwards as he searches for the lost city of Atlantis. Along the way, Professor Edwards is accompanied by his daughter, fiancé, and a preserved talking human head that speaks the ancient language of the people of Atlantis. As they journey through the African jungle, the group encounters numerous strange and potentially dangerous situations, creating a unique and adventurous tone for the show.

Though not much is known about the radio series, it is thought to have aired around 1937 or 1938. Moon Over Africa is a syndicated 15-minute serial, possibly from South Africa, and it remains uncertain whether the series was ever broadcast in the United States. Talbot Mundy wrote the series script and is known for other serials such as Jack Armstrong, Lost Empire, and Ghost Corps. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mothers-best-flour.html b/site/partial/series/mothers-best-flour.html index 7c0df23..83c2a6f 100644 --- a/site/partial/series/mothers-best-flour.html +++ b/site/partial/series/mothers-best-flour.html @@ -648,9 +648,12 @@

Mother's Best Flour was a lively and engaging radio show featuring Hank Williams and the Drifting Cowboys performing country, instrumental, and gospel songs. Aimed at a rural and largely female audience, the show promoted biscuit and cake flour, self-rising cornmeal, and livestock feed products. The informal banter and warm camaraderie between Hank, announcer Louie Buck, and the Mother's Best Music Makers offered listeners a glimpse into the real personality of Hank Williams, contrary to the sad and forlorn image often portrayed in biographies. The show was characterized by its casual tone and fun atmosphere, giving off the impression of a group of friends enjoying coffee and biscuits together in the morning.

Broadcast on WSM in Nashville, Tennessee from late 1950 to late 1951, Mother's Best Flour featured a variety of hymns, gospel music, and current hits sung by Hank Williams during his prime career years. Despite being paid $100 a week for the show, Hank was unguarded and relaxed throughout the series, allowing listeners to truly get to know him as a person. The show had a total of 15-minute broadcasts, which at times were pre-recorded due to Hank's touring schedule. These radio shows are considered some of Hank Williams' most popular work and are still sought after in his extensive catalogue. -

Sources: +

+

Performers: Hank Williams, Louie Buck

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mr-and-mrs-north.html b/site/partial/series/mr-and-mrs-north.html index d388163..df98ffb 100644 --- a/site/partial/series/mr-and-mrs-north.html +++ b/site/partial/series/mr-and-mrs-north.html @@ -684,9 +684,12 @@

Mr. and Mrs. North is a radio mystery series that follows the lives of amateur detectives, publisher Jerry North and his wife Pam, who live in Greenwich Village at 24 St. Anne's Flat. Created by Frances and Richard Lockridge, the couple stumbles across a murder or two every week throughout the show, reaching nearly 20 million listeners. Combining elements of mystery and lighthearted comedy, Pam often solves the cases, while her husband Jerry provides the background for their adventures. Mr. and Mrs. North are also featured in 26 novels, a Broadway play, a motion picture, and several television series.

The show was broadcast on CBS from 1942 to 1954, starting with Alice Frost and Joseph Curtin in the title roles. Later on, Richard Denning and Barbara Britton played the Norths. The series aired on NBC Radio for Woodbury Soap from 1941 and December 1942 through December 1946, and then on CBS Radio for Colgate-Palmolive from July 1947 to April 1955. In 1946, Mr. and Mrs. North received the first Best Radio Drama Edgar Award from the Mystery Writers of America, tying with CBS's Ellery Queen. -

Sources: +

+

Performers: Alice Frost, Joseph Curtin, Richard Denning, Barbara Britton, Frank Lovejoy, Walter Kinsella, Mandel Kramer

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mr-district-attorney.html b/site/partial/series/mr-district-attorney.html index d161b1d..fcb8e1e 100644 --- a/site/partial/series/mr-district-attorney.html +++ b/site/partial/series/mr-district-attorney.html @@ -747,9 +747,12 @@

Mr. District Attorney is a radio crime drama series that focuses on the adventures of a dedicated district attorney, initially known as "Mister District Attorney" or "Chief." The show is known for its meticulous and accurate representation of the realities of the crime world. This can be attributed to the show's creator, former law student Ed Byron, who went to great lengths to study crime statistics, criminology texts, and even mingle with criminals and police officers to create realistic storylines. The show emphasized the importance of the district attorney's role in safeguarding citizens' fundamental rights, acting as a champion of the people, defender of truth, and guardian of life, liberty, and the pursuit of happiness.

The show aired on NBC and ABC from April 3, 1939 to June 13, 1952, and in transcribed syndication through 1953. Throughout its run, various actors played the title role, including Dwight Weist, Raymond Edward Johnson, Jay Jostyn, and David Brian. The show also featured a voice known as the "Voice of the Law," which defined the duties and responsibilities of the district attorney. There were 195 known episodes of Mr. District Attorney during its time on air, and the show experienced remarkable ratings success, rivalling the likes of Jack Benny and Bob Hope. The show's striking similarity to real-life crime events even caught the attention of the FBI, who paid a visit to Byron in response to one of the storylines mirroring an actual criminal case. -

Sources: +

+

Performers: Dwight Weist, Raymond Edward Johnson, Jay Jostyn, David Brian, Maurice Franklin, Vicki Vola, Walter Kinsella, Len Doyle, Paul Stewart, Frank Lovejoy, Eleanor Silver, Arlene Francis

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mr-keen-tracer-of-lost-persons.html b/site/partial/series/mr-keen-tracer-of-lost-persons.html index 84e1fad..ea47ff0 100644 --- a/site/partial/series/mr-keen-tracer-of-lost-persons.html +++ b/site/partial/series/mr-keen-tracer-of-lost-persons.html @@ -513,9 +513,12 @@

Mr. Keen, Tracer of Lost Persons was a captivating radio show that first premiered on the Blue Network. The program followed the story of a no-nonsense investigator, known only as Keen, who helps track down people who mysteriously vanish from their everyday lives. His trusty assistant Mike Clancy, a strong-willed Irishman, aids him in his disparate quests. The show evolved from its initial format as a thrice-weekly 15-minute serial, tackling baffling disappearances, to a humorous and entertaining program that saw Keen investigating murders in its half-hour week-long formula.

Broadcasted for 18 years, Mr. Keen, Tracer of Lost Persons aired from October 12, 1937, until September 26, 1955. It initially premiered on the Blue Network before transferring to CBS in 1942. Notable sponsors included Bisodol, Kolynos toothpaste, Chesterfield cigarettes, and American Chicle. Out of many episodes that aired during its run, nearly 60 recordings survive to this day for modern audiences to enjoy. The show's engaging format and memorable characters have made it popular with old-time radio fans even today. -

Sources: +

+

Performers: Bennett Kilpack, Philip Clarke, Arthur Hughes, Jim Kelly

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mr-moto.html b/site/partial/series/mr-moto.html index 5c16999..488bc0f 100644 --- a/site/partial/series/mr-moto.html +++ b/site/partial/series/mr-moto.html @@ -144,9 +144,12 @@

Mr. Moto is a fictional Japanese secret agent and international detective created by American author John P. Marquand. The character first appeared in six novels between 1935 and 1957, and then in various other media formats. Mr. Moto, known for his shrewdness, toughness, and ruthlessness against his enemies, is often perceived by most people as a harmless eccentric who sometimes claims to be stupid. The main characters in the novels are Westerners who encounter Mr. Moto during their adventures in exotic lands and gradually become aware of his formidable character. In the first five novels, set in the era of expansionist Imperial Japan, Mr. Moto serves as an agent of the empire, but in the final novel, set in the 1950s inside Japan, he is a senior intelligence official in the pro-Western Japanese government.

The Mr. Moto radio show aired 23 episodes starring James Monks in 1951. It was inspired by the popularity of the Charlie Chan detective series, which featured detectives of Asian descent who spoke with foreign accents. The radio show adaptations followed the nine Mr. Moto film series, where Peter Lorre played the lead role. The films were popular in the 1930s but ceased production once the United States entered WWII due to anti-Japanese sentiment. The Mr. Moto radio show was made during the early 1950s, after the war's end. -

Sources: +

+

Performers: Peter Lorre, Henry Silva, James Monk

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/murder-at-midnight.html b/site/partial/series/murder-at-midnight.html index 110f433..3d8e264 100644 --- a/site/partial/series/murder-at-midnight.html +++ b/site/partial/series/murder-at-midnight.html @@ -297,9 +297,11 @@

Murder at Midnight was a thrilling radio series featuring macabre tales frequently involving supernatural elements. Produced in New York and distributed by World Broadcasting System, the show aimed to captivate audiences with stories of suspense and horror. The series was the brainchild of Louis G. Cowan and featured engaging scripts from various writers, including Robert Newman, Joseph Ruscoll, Max Erlich, and William Morwood. Directed by Anton M. Leder and hosted by Raymond Morgan, the program enraptured listeners with Charles Paul's haunting organ theme setting the tone for each spine-chilling episode.

Originally recorded between mid-April and December of 1946, Murder at Midnight aired on radio networks such as Los Angeles' KFI and enjoyed syndication until the early 1960s. The show produced a total of 50 episodes, with ten later being picked up by the Mutual Broadcasting System in 1950. Murder at Midnight remains a memorable and beloved part of radio show history, with its unique storytelling style, talented cast, and captivating premise that resonated with listeners from coast to coast. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/murder-by-experts.html b/site/partial/series/murder-by-experts.html index 53265aa..d0ead7d 100644 --- a/site/partial/series/murder-by-experts.html +++ b/site/partial/series/murder-by-experts.html @@ -153,9 +153,12 @@

Murder by Experts was a thrilling radio show that aired on Mutual and captivated audiences with its crime and mystery content. The highly regarded program was the brainchild of Robert Arthur and David Kogan, creators of The Mysterious Traveler, and featured stories by distinguished writers of the time. Each episode would begin with an introduction by a host, such as John Dickson Carr or Brett Halliday, who would announce the story's title, author, and guest expert. The show was highly successful, winning the prestigious Edgar Award for best radio drama in 1950.

The show aired from June 1949 through December 1951, with a total of 130 episodes broadcast. Noteworthy actors who appeared on the program included Lawson Zerbe, Ann Shepherd, Santos Ortega, Ralph Bell, and William Zuckert. Murder by Experts showcased the talents of top mystery writers like Carr, Halliday, Craig Rice, Bruno Fisher, and Lawrence Blochman, who all used their expertise to select the stories for each episode. Host John Dickson Carr was best known for his intricate plot twists and sensational writing style, while Davis Dresser, who worked under the pen name Brett Halliday, was the author behind the popular private detective Michael Shayne. Despite the show's reliance on expert writing rather than well-known talent, Murder by Experts remains an essential addition to any mystery collection. -

Sources: +

+

Performers: Lawson Zerbe, Ann Shepherd, Santos Ortega, Ralph Bell, William Zuckert

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/my-favorite-husband.html b/site/partial/series/my-favorite-husband.html index 1c6cd8d..49aef32 100644 --- a/site/partial/series/my-favorite-husband.html +++ b/site/partial/series/my-favorite-husband.html @@ -990,9 +990,12 @@

My Favorite Husband is an American radio program and network television series. The show centers around the lives of Liz and George Cugat, a married couple who live at 321 Bundy Drive in the fictitious city of Sheridan Falls. Described as "two people who live together and like it," the series focuses on the minor crises and problems that arise as a result of Liz's quirky ideas. Each episode concludes with the couple resolving their issues and Liz affectionately referring to George as her "favorite husband." The show's tone is light-hearted, with a mix of situational comedy and witty dialogue.

The radio version of My Favorite Husband aired from July 23, 1948, to March 31, 1951, spanning 124 episodes. Initially broadcasted on CBS Radio, it eventually acquired Jell-O as its sponsor. The series starred Lucille Ball as Liz and Richard Denning as George, with Gale Gordon taking over the role of George's boss Rudolph Atterbury in March 1949. When Lucille Ball was asked to do a television adaptation of the show in 1950, she insisted on her real-life husband, Desi Arnaz, playing her on-screen partner. This led to the development of the popular television sitcom I Love Lucy. While the television version of My Favorite Husband starred Joan Caulfield and Barry Nelson, it only ran for two and a half seasons from September 1953 to December 1955. -

Sources: +

+

Performers: Lucille Ball, Richard Denning, Hans Conried, Joseph Kearns, Gale Gordon, Bea Benaderet

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/my-friend-irma.html b/site/partial/series/my-friend-irma.html index 69e616d..e78a2ee 100644 --- a/site/partial/series/my-friend-irma.html +++ b/site/partial/series/my-friend-irma.html @@ -459,9 +459,12 @@

My Friend Irma is a radio sitcom that revolves around the life of a dim-witted blonde stenographer named Irma Peterson, played by Marie Wilson. The show focuses on the daily antics and problems that arise with Irma's friends, especially her logical and dependable roommate, Jane Stacy, played by Cathy Lewis. The comedic tone and style of the show rely heavily on the witty and sometimes absurd interactions between these characters, as well as Irma's humorous misunderstandings and misadventures.

The radio series was broadcast on CBS from April 11, 1947, to August 23, 1954. Throughout its run, the show was a consistent hit in the Hooper and Neilson top-15 ratings. The success of My Friend Irma led to various adaptations, including two films, a television series from 1952 to 1954, a comic strip, a comic book written by the legendary Stan Lee, and a stage play. Some of the notable advertisers and sponsors included Lever Brothers, Lux Radio Theater, and Arthur Godfrey's Talent Scouts. In addition to its talented lead actors, Marie Wilson and Cathy Lewis, the show also featured performances by notable actors such as Hans Conried, John Brown, and Alan Reed. -

Sources: +

+

Performers: Marie Wilson, Cathy Lewis, John Brown, Hans Conreid, Lief Erickson, Alan Reed, Joan Banks, Mary Shipp, Kenny Delmar, Bea Benaderet

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mystery-house.html b/site/partial/series/mystery-house.html index 68963d0..3e3bb13 100644 --- a/site/partial/series/mystery-house.html +++ b/site/partial/series/mystery-house.html @@ -306,9 +306,11 @@

Mystery House was a unique radio drama series that revolved around the publishing firm owned by Dan and Barbara Glenn. The series, set in New York City, featured an innovative premise where each new novel from the publishing company was acted out by the Mystery House staff prior to being accepted for publication. As a result, the show served as a testing ground for new mystery novels, with the staff handling various responsibilities such as script adaptations, acting, and sound effects, providing the audience with the opportunity to engage with the stories before they became published books.

The show initially began airing on NBC in 1929 and continued to broadcast as late as 1951 in various formats across different stations, including WGN in Chicago and WOR in New York. To date, only fifteen episodes are known to exist. An interesting trivia about the show is an episode featuring famed actor Bela Lugosi, which seems to have been more professionally produced with hired actors and announcers, leading to speculations that it may have been an unaired audition episode. However, the complete broadcast history and further information about Mystery House remain largely shrouded in mystery. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mystery-in-the-air.html b/site/partial/series/mystery-in-the-air.html index 2fc6031..3ad2e57 100644 --- a/site/partial/series/mystery-in-the-air.html +++ b/site/partial/series/mystery-in-the-air.html @@ -90,9 +90,12 @@

Mystery in the Air was a suspenseful and thrilling radio show starring Peter Lorre, an actor known for his "creepy foreigner" persona. The show featured stories from world literature, including works by Edgar Allen Poe, Pushkin, de Maupassant, Theodore Sturgeon, and Dostoevsky. With a focus on the strange and unusual, Mystery in the Air captivated its audience with each eerie twist and turn. Peter Lorre's distinct voice and convincing portrayals of psychopathic characters contributed to the show's unique flavor and helped secure its place in radio history.

The show aired in 1947 as a summer replacement series and featured a regular stock of players, including Harry Morgan, who later gained fame as Detective Joe Gannon on TV's Dragnet. The cultural impact of Mystery in the Air is evident in Peter Lorre's Star on the Hollywood Walk of Fame at 6619 Hollywood Blvd. For fans of suspenseful and mysterious radio shows, Mystery in the Air offers a chilling and memorable experience. -

Sources: +

+

Performers: Peter Lorre, Harry Morgan

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/mystery-is-my-hobby.html b/site/partial/series/mystery-is-my-hobby.html index 1f29d9e..fa2d18d 100644 --- a/site/partial/series/mystery-is-my-hobby.html +++ b/site/partial/series/mystery-is-my-hobby.html @@ -549,9 +549,12 @@

Mystery is My Hobby is a crime and detective series that follows the adventures of author Barton Drake, a mystery writer with a knack for getting himself into trouble. Portrayed by Glen Lagan, Drake is a worldly, man-about-town type of detective, more akin to Lord Peter Wimsey than the hard-boiled Sam Spade or Philip Marlowe. In a unique twist, his sidekick is police officer Noah Danton, who accompanies Drake on investigations both within and outside of the country. Danton, while somewhat dim as a police officer, follows Drake's every move, and at the end of each episode, Drake has to explain to him how he solved the mystery. Performed before a live audience, the show had a light and engaging tone, which was different from the more serious crime dramas of the time.

The show was broadcast on the Mutual Radio Network from 1945 to 1947, with its original title being Murder is My Hobby. However, the sponsor, Mutual Benefit Life Insurance Company of Omaha, thought the title was too harsh, as having a life insurance company sponsor a show with murder in the title seemed inappropriate. While air dates, broadcast networks, and production personnel are not the focus of this summary, it's interesting to note the unique pairing of an author and police officer as the main characters, as well as the lighter tone and style of this detective series compared to its contemporaries. -

Sources: +

+

Performers: Glen Lagan

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/nero-wolfe-cbc.html b/site/partial/series/nero-wolfe-cbc.html index afd293f..2ef7a49 100644 --- a/site/partial/series/nero-wolfe-cbc.html +++ b/site/partial/series/nero-wolfe-cbc.html @@ -135,9 +135,12 @@

Nero Wolfe is a Canadian radio drama series based on the detective mystery novels by Rex Stout. The show follows the adventures of the titular character, Nero Wolfe, a genius detective and his loyal assistant, Archie Goodwin. The series has a 60-minute long format with a tone and style that focuses on solving mysteries with strong attention to detail and sophisticated dialogue. The show stars Mavor Moore as Nero Wolfe and Don Francks as Archie Goodwin, and it is known for its high production values and accurate presentation of Stout's original stories.

The Nero Wolfe radio series was broadcast on the Canadian Broadcasting Corporation (CBC) from January 16, 1982, to April 10, 1982, with a total of 13 episodes. The series was created by Rex Stout, written by Ron Hartmann (adaptation), and directed and produced by Ron Hartmann. The supporting cast included notable actors such as Cec Linder, Frank Perry, and Alfie Scopp. The show was released on audiocassette by Durkin Hayes Publishing (DH Audio), and it is still appreciated by fans of detective mystery stories. -

Sources: +

+

Performers: Mavor Moore, Don Francks, Cec Linder, Frank Perry, Alfie Scopp, Fiona Reid, Jack Creley, Neil Munro, Jackie Burroughs, Lally Cadeau, Jayne Eastwood, Brian George, Martha Gibson, Lynne Griffin, Barbara Hamilton, Patricia Hamilton, Helen Hughs, Charmion King, Budd Knapp, Maria Loma, Arch McDonnell, Meana E. Meana, Mary Peery, Eric Peterson, August Schellenberg, Ailine Seaton, Terry Tweed, Sandy Webster

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/nick-carter-master-detective.html b/site/partial/series/nick-carter-master-detective.html index f89824b..c8dc9c2 100644 --- a/site/partial/series/nick-carter-master-detective.html +++ b/site/partial/series/nick-carter-master-detective.html @@ -1368,9 +1368,12 @@

Nick Carter, Master Detective is a radio crime drama that revolves around the tales of the fictional private detective, Nick Carter. The show features Lon Clark as Nick Carter, the master detective who tirelessly works to solve crimes while navigating through various clues littered across the scenes. Carter's assistant, Patsy Bowen, is played by Helen Choate and later Charlotte Manson, adding wit and intelligence to the crime-solving duo. The show is characterized by its dramatic narrative, organ-led background music, and sound effects that keep the energy high and the story moving along. The radio program provides a thrilling experience for listeners as they attempt to solve the cases alongside Nick Carter and Patsy Bowen.

The show aired from April 11, 1943 to September 25, 1955, spanning well over a decade. Nick Carter, Master Detective was first broadcasted on Mutual Broadcasting System and changed networks multiple times during its run. In total, 124 episodes aired, all of which can still be listened to today. Additionally, there was a spinoff called Chick Carter, Boy Detective, which aired from July 1943 to July 1945 and targeted a younger audience. Nick Carter's popularity extended beyond radio, as the character was featured in movies, television shows, and books. The radio series itself was sponsored by various advertisers and companies, including Acme Paints, Lin-X, Cudahy Packing, Old Dutch Cleanser, and Libby Packing. The production team included talented writers such as Walter B. Gibson, Milton J. Kramer, David Kogan, and Alfred Bester, along with producers and directors Jock MacGregor and Ferrin Fraser, who helped to bring the intriguing world of Nick Carter to life for radio listeners. -

Sources: +

+

Performers: Lon Clark, Helen Choate, Charlotte Manson, John Kane, Ed Latimer, Bill Lipton, Leon Janney, Raymond Edward Johnson, Bill Johnstone, Bryna Raeburn, Michael Fitzmaurice

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/night-beat.html b/site/partial/series/night-beat.html index 80e6605..3495ef1 100644 --- a/site/partial/series/night-beat.html +++ b/site/partial/series/night-beat.html @@ -693,9 +693,12 @@

Night Beat is a radio drama series that revolves around the life of Randy Stone, a reporter covering the night beat for the Chicago Star. Stone encounters an array of criminals, eccentrics, and troubled souls during his nightly search for strange and intriguing stories. While most episodes of the show gravitate toward suspense, crime, and thriller themes, Night Beat occasionally presents humorous or sentimental stories as well. Each episode concludes with Stone typing up a news story based on his latest escapades and calling for the copy boy to deliver it to an editor.

The show aired on NBC from February 6, 1950, to September 25, 1952 and was sponsored by Pabst Blue Ribbon Beer and Wheaties. Frank Lovejoy starred as Randy Stone and was supported by an ensemble cast of talented actors including Joan Banks, Parley Baer, William Conrad, Jeff Corey, Lawrence Dobkin, Paul Frees, Jack Kruschen, Peter Leeds, Howard McNear, Lurene Tuttle, Martha Wentworth, and Ben Wright. The announcer for the show was Donald Rickles. In addition to its radio format, there was a television pilot episode of Night Beat on the anthology series Four Star Playhouse, and an ebook anthology of six new Night Beat stories called "Nightbeat: Night Stories." -

Sources: +

+

Performers: Frank Lovejoy, Donald Rickles, Joan Banks, Parley Baer, William Conrad, Jeff Corey, Lawrence Dobkin, Paul Frees, Jack Kruschen, Peter Leeds, Howard McNear, Lurene Tuttle, Martha Wentworth, Ben Wright

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/obsession.html b/site/partial/series/obsession.html index 2311ff2..54e0deb 100644 --- a/site/partial/series/obsession.html +++ b/site/partial/series/obsession.html @@ -288,9 +288,12 @@

Obsession is a radio show that dives into the dark and twisted aspects of the human mind, reflecting the post-World War II audience's craving for more dramatic and thrilling programming. The show's stories revolve around human beings in conflict with themselves, their obsessions, and their dark psychological tendencies. Its chilling and eerie narrative explores the minds of murderers, evil geniuses, and tyrants, with episodes delving into topics ranging from Napoleon's own obsession to various individuals' fixation on shoes, death, or tides.

The radio show aired its first episode on October 9, 1950, and was independently produced by C.P. 'Chick' MacGregor. Obsession began on WBBM, Chicago, as a filler until it earned its own time slot on January 15, 1951. Over its seventeen-month run, the program featured notable radio actors such as Vincent Price, Ruth Warrick, William Gargan, Miriam Hopkins, and Barton Yarborough. Despite the varying quality of the scripts, the music, acting, and narrative of the show have been praised and appreciated by enthusiasts. Obsession concluded with its final broadcast on May 12, 1952. -

Sources: +

+

Performers: Vincent Price, Ruth Warrick, William Gargan, Miriam Hopkins, Barton Yarborough

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/old-fashioned-revival-hour.html b/site/partial/series/old-fashioned-revival-hour.html index 86c800b..42040c5 100644 --- a/site/partial/series/old-fashioned-revival-hour.html +++ b/site/partial/series/old-fashioned-revival-hour.html @@ -162,9 +162,12 @@

Old Fashioned Revival Hour is a Christian evangelical radio show featuring hymns and gospel music led by Pastor Charles E. Fuller, who was one of the first radio ministers. The show aimed to spread the message of Christianity through traditional hymns sung by luminous voices. During World War II, the program aired live revivals and reached out to military personnel about to enter the Pacific theater. The show's format and tone provided a heartfelt connection for the listeners, drawing them closer to Christian values and beliefs.

The Old Fashioned Revival Hour was broadcast during the golden age of radio on various networks. Pastor Charles E. Fuller dedicated his life to the ministry and often traveled around the country to air live revivals. -

Sources: +

+

Performers: Pastor Charles E Fuller

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/old-gold-comedy-theater.html b/site/partial/series/old-gold-comedy-theater.html index 873c10c..2bb12dc 100644 --- a/site/partial/series/old-gold-comedy-theater.html +++ b/site/partial/series/old-gold-comedy-theater.html @@ -288,9 +288,12 @@

Old Gold Comedy Theater was a radio show that aimed to bring light-hearted entertainment to its audience. The show took its inspiration from the successful format used by the Lux Radio Theatre and Cecil B. DeMille. As a comedy series, it featured adaptations of movie scripts and top-notch actors, with each episode providing fast-paced, farcical stories and romantic "Boy and Girl Fall in Love Against The Odds" themes. Silent film star, Harold Lloyd, who had worked with film pioneer Cecil B. DeMille, was enlisted to host and present the plays. Lloyd became part of the action of the show, participating in the "play within a play" commercials and introducing the featured stories, which were primarily screwball comedies.

The radio show aired on NBC for a single season, with episodes broadcasted from October 29, 1944, to June 10, 1945. It was produced by the Lennen and Mitchell ad agency for the Lorillard Tobacco Company, the makers of Old Gold cigarettes. Out of the 32 episodes that were aired during its time, 30 are still in circulation today. The show was a unique merge of movies and radio and aimed to differentiate itself from other movie anthology programs with its concentration on screwball comedies and Lloyd's involvement. While the comedy adaptations were well-written for radio, a downside was the 30-minute format, which forced significant cuts from the original movie scripts, often resulting in the loss of humor and story elements. -

Sources: +

+

Performers: Harold Lloyd

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/on-stage.html b/site/partial/series/on-stage.html index 0f4375e..e55ae7b 100644 --- a/site/partial/series/on-stage.html +++ b/site/partial/series/on-stage.html @@ -387,9 +387,12 @@

On Stage is an American radio show that features a blend of classics and original stories covering various genres such as mystery, drama, comedy, satire, and adventure. The show was created by the husband and wife team of Elliot and Cathy Lewis, who were known as "Mr. and Mrs. Radio". The program was designed to showcase strong male and female parts, with both Elliot and Cathy Lewis starring in each episode. It provided a repertory of high-quality stories, with episodes contributed by both experienced and up-and-coming writers.

The show aired on CBS from January 1, 1953, to September 30, 1954, with a total of 78 episodes produced. However, only 41 of these episodes are known to still exist in circulation today. On Stage was one of the last good radio series, as the big money in entertainment began shifting over to television during this period. Despite the decline in popularity of radio shows, On Stage is a prime example of the potential quality and creativity that can be found in old-time radio programs. -

Sources: +

+

Performers: Elliot Lewis, Cathy Lewis

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/one-world-flight.html b/site/partial/series/one-world-flight.html index cb02f06..7fe8981 100644 --- a/site/partial/series/one-world-flight.html +++ b/site/partial/series/one-world-flight.html @@ -126,9 +126,11 @@

One World Flight was a documentary radio series that chronicled Norman Corwin's four-month journey across 16 countries, covering 42,000 miles. The show's premise was to interview various people, including heads of state and everyday citizens, to gain insight into their perspectives on the world following World War II. These interviews would be woven together with Corwin's commentary to create a captivating and thought-provoking program designed to help heal the wounds of the war.

The show consisted of 13 episodes, which aired on CBS radio between 14 Jan – 8 Apr 1947. During his trip, Corwin was accompanied by CBS Recorder Lee Bland and 225 pounds of magnetic wire-recording equipment. The transcript of the interviews produced 3700 typed pages, and the series was developed over three months with the help of four recording engineers and six typists. The One World Award, established in Wendell Willkie's honor, was given to Norman Corwin as the first recipient in 1946. Notable winners of this award included Fiorello La Guardia (1947), Albert Einstein (1948), John Huston (1949), and Roger Nash Baldwin (1950). -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/our-miss-brooks.html b/site/partial/series/our-miss-brooks.html index 7585874..200798c 100644 --- a/site/partial/series/our-miss-brooks.html +++ b/site/partial/series/our-miss-brooks.html @@ -1593,9 +1593,12 @@

Our Miss Brooks is a radio show that revolves around the everyday life of Connie Brooks, an English teacher at Madison High School. The series follows her interactions with other characters, such as her love interest and fellow teacher, Philip Boynton, school principal Osgood Conklin, landlady Margaret Davis, and student Walter Denton. With a comedic tone and witty dialogue, the show focuses on Miss Brooks' experiences navigating her personal and professional relationships, and features distinctive personalities that create a humorous interplay between the characters.

The show first premiered on July 19, 1948, and ran until 1957. It originated from a New York City audition that took place in 1948, with Eve Arden eventually landing the lead role. Throughout its run, the show aired on the CBS radio network and was sponsored by Colgate-Palmolive-Peet. The series consisted of numerous episodes, some of which still exist today. In 1952, Our Miss Brooks was also adapted for television and became one of the medium's earliest successes, with many of the original radio cast members playing their roles on both formats. A film adaptation of the show was released in 1956, featuring most of the radio and television cast members, and television reruns can still occasionally be found on cable television today. -

Sources: +

+

Performers: Eve Arden, Gale Gordon, Jeff Chandler, Richard Crenna, Jane Morgan, Announcer Bob LeMond, Verne Smith, Hy Averback

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/pat-novak-for-hire.html b/site/partial/series/pat-novak-for-hire.html index 5d77dec..2a83ec2 100644 --- a/site/partial/series/pat-novak-for-hire.html +++ b/site/partial/series/pat-novak-for-hire.html @@ -234,9 +234,12 @@

Pat Novak, for Hire is a detective drama radio series set on the San Francisco waterfront. The show portrays the city as a dark, rough place where survival is key. The title character, Pat Novak, is not a detective by trade, but he owns a boat shop on Pier 19 where he rents out boats and does odd jobs to make money. The series is known for its fast-paced, hard-boiled dialogue and action, as well as its witty one-liners. Each episode follows a similar formula, featuring Novak taking on unusual or risky jobs, often finding himself mixed up in murder mysteries with sultry female characters and a cat-and-mouse game with Police Inspector Hellman, played by Raymond Burr.

The show originally aired from 1946 to 1948 on KGO in San Francisco as a West Coast regional program, with Jack Webb starring as Pat Novak and Richard L. Breen writing scripts. After moving from San Francisco to Los Angeles, Webb and Breen created a similar nationwide series called Johnny Madero, Pier 23 on the Mutual network. In 1949, Webb and Breen resumed their roles for Pat Novak, for Hire on the national ABC network. The show aired until June 26, 1949, and at least 25 episodes are known to exist. The show’s success helped launch Jack Webb’s career, as he went on to create and star in another iconic crime drama, Dragnet. Other notable actors featured on Pat Novak, for Hire included Ben Morris, George Fenneman, Hal Gibney, and William Conrad. -

Sources: +

+

Performers: Jack Webb, Ben Morris, Raymond Burr, Tudor Owen, John Galbraith, Phyllis Skelton

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/people-are-funny.html b/site/partial/series/people-are-funny.html index 542a3d5..c0e9294 100644 --- a/site/partial/series/people-are-funny.html +++ b/site/partial/series/people-are-funny.html @@ -243,9 +243,12 @@

People Are Funny is an American radio and television game show created by John Guedel, in which contestants were asked to carry out stunts to prove the show's title statement. Many stunts lasted weeks, months, or even years, with successful participants receiving prizes. The show rarely featured celebrities, instead focusing on everyday people, and as a result, few recordings of the show were saved.

The show aired from 1942 to 1960, with Art Baker as the initial host before being replaced by Art Linkletter in 1943. People Are Funny moved to CBS from 1951 to 1954 before returning to NBC from 1954 to 1960. In 1984, a reconstituted version of the show with Flip Wilson as the host aired on NBC. The show was sponsored by Kool Cigarettes and later Mars Candy. Throughout its 18-year run on radio and television, People Are Funny continued to showcase increasingly outrageous and humorous stunts. -

Sources: +

+

Performers: Art Baker, Art Linkletter, Flip Wilson

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/perry-mason.html b/site/partial/series/perry-mason.html index e94e4a6..a18d6e5 100644 --- a/site/partial/series/perry-mason.html +++ b/site/partial/series/perry-mason.html @@ -2277,9 +2277,12 @@

Perry Mason is a radio crime serial based on the novels of Erle Stanley Gardner. The series primarily focused on action rather than courtroom drama, blending elements of mystery and soap opera. The show's protagonist, attorney Perry Mason, was often depicted engaging in shootouts with criminals rather than spending time in the courtroom. The series featured a variety of actors in the leading role, including Bartlett Robinson, Santos Ortega, and Donald Briggs, with John Larkin eventually taking over and portraying Perry Mason until the show's end.

The Perry Mason radio show initially aired on CBS Radio from October 18, 1943, to December 30, 1955. During its run, the series broadcasted a total of 3,000 episodes. Following the conclusion of the radio show, the series was adapted into the television show The Edge of Night, which ran for an additional 30 years. Notable sponsors of the Perry Mason radio show included General Foods and Tide, while several of the actors who portrayed Mason on radio, such as Bartlett Robinson and John Larkin, went on to appear in episodes of the Perry Mason television series starring Raymond Burr. -

Sources: +

+

Performers: Bartlett Robinson, Santos Ortega, Donald Briggs, John Larkin, Gertrude Warner, Joan Alexander, Matt Crowley, Charles Webster, Jan Miner, Mandel Kramer, Frank Dane, Mercedes McCambridge

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/philo-vance.html b/site/partial/series/philo-vance.html index 16452f2..25b3ba1 100644 --- a/site/partial/series/philo-vance.html +++ b/site/partial/series/philo-vance.html @@ -873,9 +873,12 @@

Philo Vance was a detective radio show created by S. S. Van Dine, that tells the story of a refined intellectual with a particular taste for art and culture. His character, while being a courteous and intelligent private detective, also has an innate contempt for inferiority in all forms. Throughout the series, Philo Vance displays his astuteness and great knowledge in areas such as psychology, art, and various academic subjects. The radio series, unlike the original books, portrays Philo Vance as a more relatable and approachable character, all while maintaining his intellectual prowess and unique characteristics. The show also features notable characters such as District Attorney Markham, and Ellen Deering, Philo's secretary and right-hand woman.

Philo Vance aired on NBC from 1945 to 1950, and later on ZIV Syndication in 1946 with Jackson Beck taking on the titular role. John Emery and Jose Ferrer also portrayed Philo Vance during the early broadcasts. The radio series had a total of 104 episodes, with only a handful known to still exist today. In addition to the radio show, Philo Vance's character gained popularity with an earlier appearance in 12 crime novels published during the 1920s and 1930s. During that time, Vance's character was portrayed in films and radio, making a significant impact in various forms of media. -

Sources: +

+

Performers: Jose Ferrer, Jackson Beck, George Petrie, Joan Alexander

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/pinto-pete-and-his-ranch-boys.html b/site/partial/series/pinto-pete-and-his-ranch-boys.html index 972cc3d..ed20d39 100644 --- a/site/partial/series/pinto-pete-and-his-ranch-boys.html +++ b/site/partial/series/pinto-pete-and-his-ranch-boys.html @@ -954,9 +954,12 @@

Pinto Pete and His Ranch Boys is a country and western radio program featuring a variety of songs, cowboy philosophy, and spiritual messages. The show begins with the song "I am the King of the Rangers" and includes popular western tunes such as "The Roaming Cowboy," "There's A Blue Sky," "Wait 'Till The Sun Shines Nellie," "The Blue Ridge Mountain Blues," and "When Its Prayer Meeting Time." Interspersed between the musical performances, Pinto Pete shares his thoughts and wisdom with listeners, discussing topics such as faith in God and oneself. This radio show should not be confused with the Pinto Pete comic character, a young Arizona boy featured in the 1940s.

The show recorded a total of 104 episodes, with an additional 78 episodes under the title Pinto Pete in Arizona. References to Pinto Pete and His Ranch Boys date back to as early as 1930, with the first recorded notice found in a December 1933 broadcast in Sandusky, Ohio. The program aired on various radio networks, including the Blue Network in the United States, and a Phoenix Arizona station in 1952. The show was introduced to Australia around 1934 by producer Grace Gibson and aired intermittently through 1944. The trio of Jack Ross, Joe "Curley" Bradley, and Ken "Shorty" Carson, who served as the primary actors and stuntmen for the show, were also involved in movies such as It Happened One Night and In Old Monterey. -

Sources: +

+

Performers: Jack Ross, Joe Bradley, Ken Carson

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/pinto-pete-in-arizona.html b/site/partial/series/pinto-pete-in-arizona.html index 05b5e2c..67d2874 100644 --- a/site/partial/series/pinto-pete-in-arizona.html +++ b/site/partial/series/pinto-pete-in-arizona.html @@ -720,9 +720,12 @@

Pinto Pete in Arizona was a country and western radio show spin-off from the popular program, Pinto Pete and the Ranch Boys. The show featured Pinto Pete, a singing cowboy and the boss of his ranch, along with his loyal ranch hands. Each 15-minute episode consisted of multiple songs, including at least one featuring Pinto Pete's bass voice. The show intertwined loose plots alongside music and often included a message or lesson from Pete about faith.

The series was broadcast from the early 1930s to 1944, with its earliest record dating back to 1933. Pinto Pete and the Ranch Boys recorded 104 episodes, while Pinto Pete in Arizona produced an additional 78 episodes. The show initially aired on KTM radio station and later moved to the Blue Network in 1940. It also aired in Australia through producer Grace Gibson, starting around 1934. Notable actors involved in the production included Jack Ross as Pinto Pete and Joe "Curley" Bradley and Ken "Shorty" Carson as part of the Ranch Boys trio. -

Sources: +

+

Performers: Jack Ross, Joe Bradley, Ken Carson

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/planet-man.html b/site/partial/series/planet-man.html index 6fc71be..4fe765c 100644 --- a/site/partial/series/planet-man.html +++ b/site/partial/series/planet-man.html @@ -702,9 +702,11 @@

Planet Man is an engaging science fiction series centered around the story of Dantro, a troubleshooting hero who works for the League of Planets organization. Tasked with maintaining peace and justice in the celestial world, Dantro ventures across the solar system, from Mercury to Pluto, to fight for fair play and thwart danger. With its campy and predictable plotlines, the show is a lighthearted and entertaining listen for audiences of all ages, making it an enjoyable option for laughs with friends or bedtime stories for younger listeners.

Originally broadcast in the 1950s, Planet Man was transcribed and syndicated by Palladium Radio Productions. Dantro, the main protagonist, hails from Planteria Rex, the capital of all planets. Notable adversaries faced by Dantro include the power-hungry ruler of Mars, Marston. On his interstellar adventures, Dantro is accompanied by a loyal team of sidekicks such as Dr. John Darrow, his daughter Pat, nephew and niece Billy and Jane, and his engineer Slats. As a testament to the 1950s space-obsession era, Planet Man offers a nostalgic and entertaining experience for both children and adults. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/police-headquarters.html b/site/partial/series/police-headquarters.html index 9f6a0a8..566af3e 100644 --- a/site/partial/series/police-headquarters.html +++ b/site/partial/series/police-headquarters.html @@ -351,9 +351,11 @@

Police Headquarters was a captivating radio show that focused on capturing the essence of 1930s crime dramas. The show followed a procedural format, where each 15-minute episode included an opening and closing music segment, as well as a commercial by the announcer. Episodes usually began with a citizen reporting a crime via telephone, followed by the police using their two-way radio system to set up a dragnet and track down criminals. Based on actual cases, the stories presented in the series featured crimes like murder and bank robbery, with the police identifying or apprehending the perpetrators. Though the cases may not have always been solved in real life, they were portrayed with successful resolutions on the show.

Broadcasted in 1932, Police Headquarters was produced by Bruce Eells Associates and syndicated on West Coast NBC radio stations. There were a total of 39 episodes produced, lasting about 15 minutes each. The show was known for providing a glimpse into the 1930s, making it interesting and engaging for listeners at the time. Some interesting trivia about the program is that while the stories were based on actual cases, they were always presented with a successful outcome on the show, regardless of the real-life result. The radio show is considered part of the "golden age of radio," but there is not much information about its production, actors, or other notable aspects. -

Sources: +

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/police-reporter.html b/site/partial/series/police-reporter.html index b9b7945..b7255ae 100644 --- a/site/partial/series/police-reporter.html +++ b/site/partial/series/police-reporter.html @@ -252,9 +252,11 @@

Police Reporter is a 15-minute dramatic series based on true crime stories. Syndicated by Radio Release Limited, the series consists of sensational and melodramatic stories that revolve around various murder cases, with each episode using real names, dates, and locations. The show's distinct style is reminiscent of Front Page Drama, and the police officers featured often solve the cases through the incompetence of the criminals rather than their investigative prowess. This creates a chilling and intriguing atmosphere within the series that has captivated its listeners for years.

Broadcasted between December 15, 1933, and March 1936, Police Reporter originally aired on WEAF's program grid and later on KGPJ. The series predates other true crime dramas such as Gangbusters, which first premiered on NBC as "G-Men" in July 1935. Police Reporter consists of 26 shows, which have been digitized directly from a set of original transcription discs. The show received scripts from The Writer's Market and also sought ideas from its listeners. Despite reflecting on gruesome cases that might not be suitable for children, Police Reporter's success lies in its ability to engage the audience's imagination and create a darker, scarier, and more disturbing picture than any modern media. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/ports-of-call.html b/site/partial/series/ports-of-call.html index 1d77ed6..20706dd 100644 --- a/site/partial/series/ports-of-call.html +++ b/site/partial/series/ports-of-call.html @@ -387,9 +387,11 @@

Ports of Call is a unique and captivating radio show that takes its listeners on a journey to different countries across the globe in each episode. The show delves into the history and culture of various nations, using dramatizations to depict and bring to life the significant events that shaped each country's identity. Setting the atmosphere, the series transports the listeners to a new destination with the help of a tramp steamer's whistle and an announcement of the series title, followed by a musical interlude.

The show is believed to have first aired in 1935 or 1936, with a limited number of episodes still existing today. While specific information on the production team, broadcast networks, advertisers, and sponsors may be scarce due to the show's obscurity, the unique format and content have continued to pique the interest of radio enthusiasts and those interested in world history. -

Sources: +

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/proudly-we-hail.html b/site/partial/series/proudly-we-hail.html index d1e3c9f..f5c1af4 100644 --- a/site/partial/series/proudly-we-hail.html +++ b/site/partial/series/proudly-we-hail.html @@ -4311,9 +4311,12 @@

Proudly We Hail was a public service show for the Army and Air Force that aimed to strengthen the defense machine during a time of national emergency. The show was initially designed to bolster worker morale during the buildup of tensions in the Far East and just prior to the Japanese attack on Pearl Harbor. The episodes featured recruitment ads, a short play with a big-name Hollywood actor, and an interview with the star at the end. Some notable actors that participated in the show include Clark Gable, Robert Mitchum, Glenn Ford, Alan Ladd, and William Holden.

The radio show was first aired in 1941 on CBS for four months and later returned to the airwaves from 1946 to 1957, airing on as many as 1,300 radio stations. Hollywood producer C.P. MacGregor assembled the stations into his independent network for the first broadcast of the syndicated show, and there were 136 shows in the first series. The Library of Congress has possession of the MacGregor Collection masters and recording ledgers from 1931-1970, and the series continued through to episode 464, which was released in August 1957. -

Sources: +

+

Performers: Turhan Bey, Lee Tracy, Howard McNear, Jeff Chandler, Joe DeSantis, Miriam Wolfe, Mason Adams

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/quiet-please.html b/site/partial/series/quiet-please.html index b7809f7..770aec1 100644 --- a/site/partial/series/quiet-please.html +++ b/site/partial/series/quiet-please.html @@ -837,9 +837,12 @@

Quiet, Please was a radio fantasy and horror program that captivated audiences with its engaging storytelling style and diverse range of topics, such as romance, science fiction, crime, and even humor. Created by Wyllis Cooper, the show's episodes focused on first-person narration, immersing listeners into a captivating world of suspense and intrigue. The program featured Ernest Chappell as the lead actor and announcer, who took on various roles including that of an oil platform worker, mountain climber, or soldier, with the show distinguishing itself through a skillful use of silence and a simplistic production style that relied primarily on the organ for its musical score.

The radio show was first broadcast on June 8, 1947, on the Mutual Broadcasting System, and aired its final episode on June 25, 1949, on ABC. Out of a total of 106 episodes, only a few were repeats, and it received little notice during its initial run. Despite this, Quiet, Please has since received considerable acclaim as an outstanding example of American radio drama from the golden age. Among the show's dedicated fans is writer Harlan Ellison, who praised the series for its innovative storytelling style and the terrifying effect of Chappell's softly spoken narration. -

Sources: +

+

Performers: Ernest Chappell

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/quiz-kids.html b/site/partial/series/quiz-kids.html index eebf29d..0fed6d3 100644 --- a/site/partial/series/quiz-kids.html +++ b/site/partial/series/quiz-kids.html @@ -702,9 +702,12 @@

Quiz Kids was a popular educational radio and TV series that featured a panel of five children, chosen for their high IQs, strong academic interests, and appealing personalities. The quiz show, hosted by Joe Kelly, involved Kelly asking questions sent in by listeners, which were researched by Eliza Hickok and Rachel Stevenson. The answers were provided by the panel, which rotated weekly based on top scores, with the three highest-scoring children each week joined by two others the following week. They were no longer eligible to participate once they reached the age of 16. The show's format encouraged children to display their intelligence and knowledge in a variety of subjects while engaging the audience with their personalities and sense of humor.

Quiz Kids was originally broadcast from June 28, 1940, to September 27, 1956. It aired on the NBC radio network and later on the CBS television network. The show first aired as a summer replacement show for Alec Templeton Time on NBC radio, where it continued for 13 years. On television, the show ran from July 6, 1949, to July 5, 1953, with Joe Kelly as quizmaster, and then again from January 12 to September 27, 1956, with Clifton Fadiman as host. The series was created by Louis G. Cowan and was sponsored by Alka-Seltzer. A notable ex-Quiz Kids participant is Nobel Prize-winning biologist James D. Watson. Other successful former participants include actor and dialect coach Robert Easton, legendary Hollywood acting coach Roy London, poet Marilyn Hacker, and actress Vanessa Brown. The show's popularity inspired several revivals and adaptations in various media formats over the years. -

Sources: +

+

Performers: Joe Kelly, Clifton Fadiman, Durward Kirby, Milton Berle

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/ranger-bill.html b/site/partial/series/ranger-bill.html index d70a0c4..804b799 100644 --- a/site/partial/series/ranger-bill.html +++ b/site/partial/series/ranger-bill.html @@ -1980,9 +1980,12 @@

Ranger Bill is a Christian radio adventure serial focused on the life and experiences of Park Ranger Bill Jefferson. Set in the small Rocky Mountain town of Knotty Pine, the show follows Ranger Bill, played by Miron Canaday, as he faces various challenges with his friends and colleagues, such as Stumpy Jenkins, an old-time ranger known for his marksmanship, Henry Scott, Bill's teenage ward, and Gray Wolf, a Dakota tribe member who brings both traditional methods and modern forest management to the team. The show often incorporates positive Christian values, while the characters tackle issues ranging from lost kids and elephant attacks to spacemen and hidden treasures in the Amazon.

The show was broadcast between 1950 and 1964; initially running on WMBI in Chicago with 15-minute episodes, then syndicated as a 30-minute show. In total, 206 episodes aired, with many being rebroadcast on Children's Sonshine Network and His Kids Radio. The cast included notable actors such as Miron Canaday as the titular character, Stumpy Jenkins, and Ed Ronne, Sr as Gray Wolf. The series was produced by the Moody Broadcasting Network and Moody Bible Institute, and the crew included directors Charles Christensen and Jim Grant, as well as writers Charles Erkhart and John Rowan. -

Sources: +

+

Performers: Miron Canaday, Ed Ronne Sr.

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/recollections-at-30.html b/site/partial/series/recollections-at-30.html index 0ab3b8a..bd50618 100644 --- a/site/partial/series/recollections-at-30.html +++ b/site/partial/series/recollections-at-30.html @@ -387,9 +387,12 @@

Recollections at 30 is a radio show created to celebrate the 30th anniversary of the National Broadcasting Company (NBC). The show compiles various archival recordings into a 25-minute format, with some episodes following a theme or focusing on popular radio programs or honoring famous people. Utilizing a vast range of recordings, the series covers subjects such as historical events, popular culture, and music from the past. Additionally, the show solicits ideas from listeners and honors their requests, which often includes featuring some of the earliest recordings in radio history.

The show was broadcast between 1956 and 1957 on NBC, airing a total of 45 episodes. With the first show produced on June 20, 1956, and the final broadcast on May 1, 1957, the series delved into the earlier days of radio in the 1930s, highlighting stars like Sophie Tucker, Al Jolson, Red Skelton, and more. The show also included listener-requested children's programs, as well as the earliest known broadcast from their sound library, which was from June 11, 1927. Listeners not only enjoyed listening to the old shows but also appreciated the context provided, making the experience even more delightful. -

Sources: +

+

Performers: Judy Garland, H. V. Kaltenborn, Irving Berlin, Sophie Tucker, Al Jolson, Red Skelton, Rudy Vallee, Lynn Fontanne, Alfred Lunt, Connie Boswell, Irene Dunne, Fats Waller, Dinah Shore

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/red-horse-ranch.html b/site/partial/series/red-horse-ranch.html index 1842eba..a24afbc 100644 --- a/site/partial/series/red-horse-ranch.html +++ b/site/partial/series/red-horse-ranch.html @@ -594,9 +594,12 @@

Life on Red Horse Ranch is a captivating radio show that masterfully combines thrilling serialized storytelling with the evocative music of the Old West. The show follows the adventures of old Sam Carter and his hired hands, as they attempt to save Red Horse Ranch from land grabbers, cattle rustlers, and various other challenges faced by ranchers. The tale is filled with drama, romance, and comedy, painting a vivid picture of the lives of the characters as they face danger, fall in love, and find humor in the mundane. The Texas Rangers provide the show's music, skillfully incorporating elements of drama, romance, comedy, and western action to create a soundtrack that sets the perfect backdrop for the gripping story.

The popular Life on Red Horse Ranch aired from 1935 to the early 1940s, gaining prominence and claiming a dedicated following. Additional episodes were released in 2011, providing fans with even more opportunities to immerse themselves in this beloved western saga. The show's music was performed by the KCMB Texas Rangers, a group that also appeared in numerous B-Western films and West Coast radio programs, providing their unique blend of western music and rich instrumental talents. The show's authentic atmosphere and enthralling storylines continue to captivate listeners, drawing them into the exciting and perilous world of Red Horse Ranch. -

Sources: +

+

Performers: Foreman Alabam', Tenderfoot, Idaho, Arizona, Cookie and Tex

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/redbook-dramas.html b/site/partial/series/redbook-dramas.html index e5d14c9..eac10fb 100644 --- a/site/partial/series/redbook-dramas.html +++ b/site/partial/series/redbook-dramas.html @@ -189,9 +189,11 @@

Redbook Dramas is a radio show based on short stories from Redbook Magazine. Each 15-minute episode features a different tale, often with a background of love, mystery, adventure or romance, set in exotic locations such as Yucatan, France, Dalmatia, and Manchuria. The stories showcase remarkable characters and unique circumstances, such as a surly army private getting into trouble with his pet goat, an American schoolteacher caught up in political intrigue abroad, and a domestic servant solving a murder case in the Arctic Circle. Some of the authors featured on the show include Elaine Carrington, known for her radio soap operas When a Girl Marries and Pepper Young's Family, and Frank R. Adams, famous for his short stories in popular magazines of the era.

The Redbook Dramas radio show aired in 1932 during the Great Depression, and several episodes reflect the period's challenges. The show featured engaging, lively, and vivid stories that allowed a brief escape into the world of 1930s housewifical fantasies. It was introduced by Redbook Magazine's editor, Edward Baumer, who provided background information on each story and its author. The series remains a captivating collection of narratives from a unique era in history. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/richard-diamond-private-detective.html b/site/partial/series/richard-diamond-private-detective.html index af3bdfc..66d8035 100644 --- a/site/partial/series/richard-diamond-private-detective.html +++ b/site/partial/series/richard-diamond-private-detective.html @@ -945,9 +945,12 @@

Richard Diamond, Private Detective is a radio show centered around a slick and sophisticated detective, Richard Diamond, who enjoyed bantering with his clients and entertaining his girlfriend, Helen Asher, more than his detective work. The show involved Diamond getting involved in dangerous and often violent situations while solving murder cases, but as a skillful and witty detective, he never got shot or seriously injured. His relationship with Lt. Levinson of the police force, whom Diamond often helped reluctantly, provided an element of humor in the show. Despite their on-and-off compatibility, the two characters were portrayed as the best of friends.

The radio show aired from 1949 to 1953, initially on NBC, then moving to ABC in 1951, and CBS in 1953. A total of 77 episodes aired, and the show's television adaptation starred David Janssen, known for his work in The Fugitive. The opening scene of the TV show often featured the legs of Mary Tyler Moore, who later became famous for her roles in The Dick Van Dyke Show and The Mary Tyler Moore Show. The radio series had notable sponsors like Camel cigarettes and Rexall, and some key names involved in the production were Virginia Gregg, Blake Edwards, and David Baskerville. -

Sources: +

+

Performers: Dick Powell, Virginia Gregg, Ed Begley, Arthur Q. Bryan, Ted DeCorsia, Alan Reed, Wilms Herbert

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/ripleys-believe-it-or-not.html b/site/partial/series/ripleys-believe-it-or-not.html index 370b08e..4c58521 100644 --- a/site/partial/series/ripleys-believe-it-or-not.html +++ b/site/partial/series/ripleys-believe-it-or-not.html @@ -315,9 +315,12 @@

Ripley's Believe It or Not is a radio show hosted by its creator, Robert Ripley himself. The show features strange and bizarre stories collected from Ripley's travels around the world, with each episode focusing on a specific theme like beauty, South America, war facts, inventions, or the craziest people. The show also includes dramatic reenactments of stories and customs, comedy sketches, and musical interludes. During part of its run, music was provided by Ozzie Nelson and His Orchestra, with Harriet Hillard (later Harriet Nelson) performing vocals.

The radio show first aired in 1930 and continued in various formats, time lengths, and with different sponsors until its end in 1948. The show's success provided funds for Robert Ripley to continue his world travels and discover more unusual facts for audiences to enjoy. This collection of Ripley's Believe It or Not radio show includes both 15 and 30-minute episodes. Related media adaptations have included television shows, comic books, and even a chain of museums, showcasing the enduring popularity of the franchise since its inception as a newspaper panel. -

Sources: +

+

Performers: Robert Ripley

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/ripleys-one-minute-shorts.html b/site/partial/series/ripleys-one-minute-shorts.html index fd7333e..58102f1 100644 --- a/site/partial/series/ripleys-one-minute-shorts.html +++ b/site/partial/series/ripleys-one-minute-shorts.html @@ -3762,9 +3762,11 @@

Ripley's One Minute Shorts is a captivating radio show that revolves around exploring the strange, miraculous, and unbelievable events, characters, and oddities from around the world. The show's host, Robert Ripley, rigorously searches for and documents these extraordinary occurrences, providing the audience with an engaging and mind-boggling experience. Despite the seemingly outlandish nature of these tales, they are all true, solidifying the show's premise that truth is indeed stranger than fiction. With a straightforward format and unique content, the show retains its fascinating charm for listeners from all generations.

The radio show aired without commercials, giving local stations the opportunity to sell spots. Ripley's One Minute Shorts comprises two stories per short episode, each lasting about 50 seconds. This format was designed to entertain as well as to intrigue listeners with the wonders of the world. Some related radio shows that delve into the realm of seemingly unbelievable facts and stories include Ripley's Believe It or Not (in a 15-minute format), Can You Imagine That, Passing Parade, and Strange As It Seems. -

Sources: +

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/rocky-fortune.html b/site/partial/series/rocky-fortune.html index fa8af84..b371af6 100644 --- a/site/partial/series/rocky-fortune.html +++ b/site/partial/series/rocky-fortune.html @@ -243,9 +243,12 @@

Rocky Fortune is an American radio drama with Frank Sinatra as the lead, playing the role of marginally employed Rocko Fortunato, also known as Rocky Fortune. Created by writer George Lefferts, the show follows Rocky's exploits as he takes on various odd jobs, which often lead him into contact with criminals and situations where he helps those in need. Employers and assignments varied, with the only other recurring character played by Barney Phillips as the dim-witted police Sergeant Hamilton J. Finger. Sinatra's relaxed and somewhat flippant persona combined with the humor and absurdity of the series provided a fun and engaging listening experience for the audience.

The show aired for 25 episodes over 26 weeks on NBC Radio Network from October 6, 1953, to March 30, 1954. All of the episodes are available in good sound quality, providing a treat for fans of Frank Sinatra. The show's writers often found ways to incorporate the title of Sinatra's new movie, From Here to Eternity, into the story as a running joke. Other notable actors included Raymond Burr, Ed Begley, and Jack Kruschen. -

Sources: +

+

Performers: Frank Sinatra, Barney Phillips, Raymond Burr, Ed Begley, Jack Kruschen

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/rocky-jordan.html b/site/partial/series/rocky-jordan.html index 6a2a91a..0f557fc 100644 --- a/site/partial/series/rocky-jordan.html +++ b/site/partial/series/rocky-jordan.html @@ -864,9 +864,12 @@

Rocky Jordan is a radio series centered around an American restaurateur named Rocky Jordan who finds himself solving mysteries and embarking on adventures in Cairo. Set in the Café Tambourine, which is described as "crowded with forgotten men, and alive with the babble of many languages," the show follows Jordan as he encounters crime, mystery, beautiful women, or a combination of the three. With a deliberately Eastern atmosphere created through music and sound effects, the show carefully uses real-life street names in Cairo, adding authenticity to its setting.

The show aired on CBS from October 31, 1948, to September 10, 1950, and then again from June 27, 1951, to August 22, 1951. The character of Rocky Jordan was introduced in a similar show called A Man Named Jordan, which was broadcast from 1945 to 1947 and set in Istanbul. There were talks in 1951 of creating a TV series based on the show, starring George Raft, but this never came to fruition. Jack Moyles played Rocky Jordan for most of the show's history, eventually being replaced by George Raft for the brief 1951 run. Jay Novello played Captain Sam Sabaaya, Cairo Police captain, throughout the entire series. The show was sponsored by Del Monte Foods and featured Middle Eastern music by Richard Aurandt. -

Sources: +

+

Performers: Jack Moyles, George Raft, Jay Novello, Lawrence Dobkin, Lou Krugman, Larry Thor

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/rogues-gallery.html b/site/partial/series/rogues-gallery.html index ca1b4a7..8aed71a 100644 --- a/site/partial/series/rogues-gallery.html +++ b/site/partial/series/rogues-gallery.html @@ -225,9 +225,12 @@

Rogue's Gallery is a detective drama radio program centered around Richard Rogue, a private detective who typically encounters beautiful women while on cases. Throughout each episode, Rogue loses consciousness and converses with his alter ego, Eugor, who offers him crucial information to solve the case. The program maintains a relatively lighthearted tone, similar to Dick Powell's later series, Richard Diamond, Private Detective. In addition to Powell, actors such as Barry Sullivan, Chester Morris, and Paul Stewart also portrayed the role of Rogue in later iterations of the series.

First airing on the Mutual network on September 27, 1945, Rogue's Gallery went on to broadcast on NBC and ABC networks as well. The show, initially titled as Bandwagon Mysteries, had a total of four seasons, with the final full season airing on ABC from 1950 to 1951. Throughout its run, the series was sponsored by the F. W. Fitch company, which sold Fitch Saponified Shampoo. Rogue's Gallery was a summer replacement for The Fitch Bandwagon show in the years 1945, 1946, and 1947. -

Sources: +

+

Performers: Dick Powell, Lou Merrill, Gerald Mohr, Gloria Blondell, Tony Barrett, Lurene Tuttle, Barry Sullivan, Chester Morris, Paul Stewart

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/romance-of-the-ranchos.html b/site/partial/series/romance-of-the-ranchos.html index e1a3539..5a6e804 100644 --- a/site/partial/series/romance-of-the-ranchos.html +++ b/site/partial/series/romance-of-the-ranchos.html @@ -333,9 +333,12 @@

Romance of the Ranchos was a captivating 30-minute program that sought to recreate the spirit and life of the ranchos and vaqueros in Southern California during a time when the daily way of life was significantly different. Sticking to a strict storyline, the show provided in-depth descriptions of the customs and lifestyles of the era, adding a rich historical context to the program. The commercials followed suit, giving listeners a glimpse into the vast land ownership of the past compared to the present day. Romance of the Ranchos was noted for its well-written scripts and historical accuracy, which greatly contributed to the show's immersive atmosphere.

Originally aired as a historical drama between 1941 and 1946, Romance of the Ranchos portrayed the stories of the expeditions led by men and women attempting to tame the wilds of early California. The show was broadcast on the Title Insurance and Trust Company of Los Angeles' network, with the content based on the company's title records. The cast included notable actors such as Jerry Farber, Ann Whitfield, Nestor Palva, Lou Krugman, Marian Wilkins, Gail Bonney, and Herb Butterfield. Romance of the Ranchos was produced by Cliff Howard and written by Les Farber. -

Sources: +

+

Performers: Jerry Farber, Ann Whitfield, Nestor Palva, Lou Krugman, Marian Wilkins, Gail Bonney, Herb Butterfield

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/romance.html b/site/partial/series/romance.html index c43ea75..d9981a0 100644 --- a/site/partial/series/romance.html +++ b/site/partial/series/romance.html @@ -1881,9 +1881,12 @@

Romance, also known as Theater of Romance, was a radio show that focused on romantic drama and served as a filler for various programs. With a captivating mix of tender love stories from today and memorable love stories from the past, the storylines often revolved around historical fiction and were bound to the films featuring the Hollywood stars who appeared on the show. As the series progressed, the writing and stories improved, and despite its status as a filler, the show gained a faithful listening audience that helped it become almost as popular as Lux Radio Theatre. The show was characterized by its live audience and captivating performances, offering a unique and engaging listening experience.

Broadcasted on the CBS network between 1943 and 1957, Romance substituted for such shows as Gunsmoke, Life with Luigi, and Lux Radio Theater. Over the course of its 12-year run, the show underwent significant changes in content, producers, directors, and performers. Some of the notable actors who appeared on the show included Henry Fonda, Humphrey Bogart, Shirley Temple, Gregory Peck, and other famous Hollywood stars. The show began in New York and moved to Los Angeles in 1945, further solidifying its ties to the movie industry. Theater of Romance was initially sponsored by Colgate Tooth Powder from 1944 to 1946, bringing on an array of movie stars to boost its presence. -

Sources: +

+

Performers: Henry Fonda, Humphrey Bogart, Gregory Peck, Shirley Temple

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/rotary-golden-theater.html b/site/partial/series/rotary-golden-theater.html index ed468bb..67b935a 100644 --- a/site/partial/series/rotary-golden-theater.html +++ b/site/partial/series/rotary-golden-theater.html @@ -135,9 +135,11 @@

Rotary Golden Theater was a captivating radio show produced by the International Rotary Association, which focused on various situations involving individuals facing challenges that were ultimately resolved by the Rotary Club. Each of the thirteen 15-minute episodes delved into distinct storylines that highlighted the positive impact of the Rotary Club on people's lives. With relatable characters and dramatic sequences, Rotary Golden Theater demonstrated the moral implications of the presented scenarios, leaving a lasting impression on its listeners.

The show aired from March 1, 1955, through March 18, 1955, broadcasting five times a week. Rotary Golden Theater was created in celebration of the International Rotary Association's 50th anniversary and was provided to local Rotary Clubs for broadcast on local stations. Alongside the show, thirteen discussion scripts were made available to be used as follow-up broadcasts or for educational purposes where local broadcast may not be possible. Despite being created in the mid-1950s, the show's themes and messages continue to resonate with modern audiences, proving the timeless nature of Rotary Golden Theater. -

Sources: +

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/screen-directors-playhouse.html b/site/partial/series/screen-directors-playhouse.html index f2ad25e..36df8be 100644 --- a/site/partial/series/screen-directors-playhouse.html +++ b/site/partial/series/screen-directors-playhouse.html @@ -1089,9 +1089,12 @@

Screen Directors' Playhouse was a popular American radio and television anthology series that featured leading Hollywood actors performing adaptations of well-known films. The radio program invited the original directors of the films to sometimes take part in the production, often introducing the radio adaptations and making brief curtain-call appearances alongside the cast and host at the end of the show. The television version of the show, which aired during the 1955-56 season, focused mostly on original teleplays and several adaptations of famous short stories, such as Robert Louis Stevenson's "Markheim."

The radio version of Screen Directors' Playhouse aired for 122 episodes on NBC from January 9, 1949, to September 28, 1951, under various titles including NBC Theatre, Screen Actors Guild Assignment, Screen Directors Assignment, and eventually Screen Directors' Playhouse as of July 1, 1949. The show featured prominent actors of the time such as Fred Astaire, Lucille Ball, Gary Cooper, Joan Crawford, Bette Davis, Cary Grant, and John Wayne. The television version of the program, produced at Hal Roach Studios, lasted for one season consisting of 35 half-hour episodes, airing on NBC from October 5, 1955, to June 1956, and subsequently on ABC until September 26, 1956. -

Sources: +

+

Performers: Fred Astaire, Lucille Ball, Tallulah Bankhead, Charles Boyer, Claudette Colbert, Ronald Colman, Gary Cooper, Joan Crawford, Bette Davis, Marlene Dietrich, Kirk Douglas, Irene Dunne, Douglas Fairbanks Jr., Henry Fonda, Cary Grant, William Holden, Burt Lancaster, James Mason, Ray Milland, Gregory Peck, William Powell, Edward G. Robinson, Norma Shearer, Barbara Stanwyck, James Stewart, John Wayne, Loretta Young and more

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/sears-radio-theater.html b/site/partial/series/sears-radio-theater.html index bf34800..305531c 100644 --- a/site/partial/series/sears-radio-theater.html +++ b/site/partial/series/sears-radio-theater.html @@ -1179,9 +1179,12 @@

Sears Radio Theater was a radio drama anthology series that presented a different genre of drama for each day's broadcast. The series featured a variety of themes, such as "Western Night," "Comedy Night," "Mystery Night," "Love and Hate Night," and "Adventure Night." Each of these themes was hosted by a different celebrity, including Lorne Greene, Andy Griffith, Vincent Price, Cicely Tyson, Richard Widmark, Howard Duff, and Leonard Nimoy. The show included many actors from the Golden Age of Radio, and the program was produced and directed by Fletcher Markle and Elliott Lewis. The theme music for the show was composed and conducted by Nelson Riddle. Sears Radio Theater was praised for its ambitious attempt to reinvigorate radio drama and was broadcast in stereo.

The show initially aired on CBS Radio in 1979 and was sponsored by the Sears chain. In 1980, the program moved to the Mutual Broadcasting System and became the Mutual Radio Theater. The Mutual series broadcast repeats from the CBS run until September 1980, when a short season of new dramas was presented. Sears continued as a sponsor during the Mutual run. The series ended as Mutual's final radio drama series but continued to broadcast repeats of the program, along with a few previously unaired episodes, until December 1981. -

Sources: +

+

Performers: Parley Baer, Mary Jane Croft, Howard Culver, John Dehner, Virginia Gregg, Janet Waldo, Vic Perrin, Hans Conried, Marvin Miller, Elliot Lewis, Jeff Corey, Lesley Woods, Robert Rockwell, Lurene Tuttle, Eve Arden, Keith Andes, Harriet Nelson, Alan Young, Tom Bosley, Marion Ross, Lloyd Bochner, Rick Jason, Frank Campanella, Toni Tennille, Arthur Hill, Dan O'Herlihy, Jesse White, Frank Nelson, Jim Jordan, Henry Morgan, Daws Butler, June Foray, Joan McCall, Don Diamond, Peggy Webber

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/secret-agent-k-7-returns.html b/site/partial/series/secret-agent-k-7-returns.html index 71a662e..6e52b8b 100644 --- a/site/partial/series/secret-agent-k-7-returns.html +++ b/site/partial/series/secret-agent-k-7-returns.html @@ -612,9 +612,12 @@

Secret Agent K-7 Returns is a syndicated radio series that first aired in 1939, featuring seventy-eight fifteen-minute episodes revolving around spy stories. The character of Secret Agent K-7 didn't participate in most of the adventures but rather introduced the stories of what other agents did. As the episodes progressed, K-7 took a more active role, assigning missions to the three main agents who starred in the program and occasionally assisting in capturing the antagonist. The series was well-paced and exciting, focusing on various plans to undermine world peace, including sabotage, blackmail, assassination, and border violations. The episodes had historical significance as they subtly warned America about the danger of Hitler and the start of World War II in Europe.

The Secret Agent K-7 Returns radio show featured a prolonged organ intro that allowed the local announcer to insert commercials for the local furniture store or dairy. Each episode lasted about 12 and a half minutes, with interesting and exciting cases. The actors who brought these spy stories to life remain unknown today, much like the real spies of the time. The sound quality of the episodes is excellent, and they offer valuable insight into America's history during that time. The show's organ music is enjoyable as a mark of old-time radio shows, and the sound effects provide the drama that modern audiobooks lack. The series' episodes continue to remain relevant, as they address issues that are still pertinent today, such as undesirable aliens, fraudulent passports, government overthrow, and world crisis. -

Sources: +

+

Performers: Unknown

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/secrets-of-scotland-yard.html b/site/partial/series/secrets-of-scotland-yard.html index 3e9e40d..7439a29 100644 --- a/site/partial/series/secrets-of-scotland-yard.html +++ b/site/partial/series/secrets-of-scotland-yard.html @@ -531,9 +531,12 @@

Secrets of Scotland Yard was a crime drama series that captivated listeners with stories based on true cases from the London Metropolitan Police. Each week, the show followed detectives at Scotland Yard as they investigated notorious criminals and their infamous trials. The gripping stories ranged from the theft of the British crown jewels to murder investigations, with each case presenting a unique mystery for the detectives to solve. The show, an independent production by the Towers of London syndicate, initially featured Clive Brook as the host and later introduced an actor portraying Superintendent X of Scotland Yard, adding authenticity to the narrative.

The series aired internationally between 1949 and 1951 and eventually made its way to the US radio network in 1957 on the Mutual Broadcasting System. With over 100 episodes, one of them, "The Bone From A Voice Box", served as the prototype for another well-known Towers Of London dramatic series, The Black Museum, both featuring renowned actors as host and narrator. Clive Brook, the initial host of Secrets of Scotland Yard, was an accomplished film director, writer, and actor who was best known for his roles in "Shanghai Express" and "Sherlock Holmes". His experience with the 1936 film "Scotland Yard Commands" brought an air of authenticity to the show, as did his discussions with crime expert and reporter Percy Hoskins. -

Sources: +

+

Performers: Clive Brook

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/sf-68.html b/site/partial/series/sf-68.html index 4407345..75945fd 100644 --- a/site/partial/series/sf-68.html +++ b/site/partial/series/sf-68.html @@ -144,9 +144,12 @@

SF-68 is a South African science fiction anthology series that featured stories penned by renowned authors such as Ray Bradbury and Harlan Ellison. Hosted by Michael McCabe, a well-known South African radio talent, the show captivated listeners with its engaging and thought-provoking episodes. Each story explored a different aspect of the realm of science fiction, showcasing tales featuring futuristic technology, societal changes, and characters with unique abilities. The program's well-written dramas challenged the listener's imagination and spurred them to think beyond the seemingly impossible, creating an immersive experience that took them on a journey into a world of fantastic possibilities.

The popular radio show eventually made its way to America, where it continued to expand its fan base. SF-68 aired from March 1968 and featured episodes such as "Last Rites," which brought a priest face to face with his own faith, "Wanted in Surgery," which examined the future of medicine and the implications of robotic medical professionals, and "Jenny with Wings," which told the story of a girl born with wings that allowed her to fly. While little is known about the broadcasting details of the show, its well-crafted stories and intriguing premise made it an unforgettable part of radio history for those lucky enough to have experienced it. -

Sources: +

+

Performers: Michael McCabe

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/shell-chateau.html b/site/partial/series/shell-chateau.html index e65eb3a..be582be 100644 --- a/site/partial/series/shell-chateau.html +++ b/site/partial/series/shell-chateau.html @@ -243,9 +243,12 @@

Shell Chateau was a musical variety series that showcased a range of talents and featured diverse acts. The host of the show changed several times during its run, with entertainers such as Al Jolson, Wallace Beery, and Smith Ballew taking on the role. The program began with an opening song, followed by a comedy routine, a guest performer, more music, and then ended with a dramatic sketch. Film stars would occasionally perform scenes from their movies to promote them, while the show broadcast from Los Angeles, giving it an air of glamour and exoticism.

The show aired from 1935 to 1937 on the NBC network, and while specific episode numbers are not provided, it had a consistent weekly schedule during its run. Several famous individuals, such as Judy Garland, Wallace Beery, and Babe Ruth, made guest appearances on the program. Legendary entertainer Al Jolson was known for his success in various mediums, including movies and radio shows, but his time on Shell Chateau marked a peak in his career. The show's popularity declined after Jolson departed in March 1936, but continued until June 1937 with a rotating cast of hosts. -

Sources: +

+

Performers: Al Jolson, Wallace Beery, Walter Winchell, Smith Ballew, Joe Cook, Louis Armstrong, John Barrymore, Lionel Barrymore, Ben Blue, Bette Davis, Joan Davis, Florence Gill, George Jessel, Boris Karloff, Dixie Lee, Joe E. Lewis, John McCormack, Maxie Rosenbloom, Joe Penner, Eleanor Powell, Ginger Rogers, Babe Ruth, Benay Venuta, Fats Waller, Johnny Weissmuller, June Marlowe, Midge Williams, Lee Wiley

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/sherlock-holmes.html b/site/partial/series/sherlock-holmes.html index f975a0c..bff9e2e 100644 --- a/site/partial/series/sherlock-holmes.html +++ b/site/partial/series/sherlock-holmes.html @@ -1098,9 +1098,12 @@

The Adventures of Sherlock Holmes is a detective mystery radio show that aired in the United States between 1930 and 1936, adapting Sir Arthur Conan Doyle's Sherlock Holmes stories. It returned as The New Adventures of Sherlock Holmes from 1939 to 1950, which continued to focus on the legendary detective's gripping cases. The original series was largely scripted by Edith Meiser, who not only adapted all but one of Doyle's stories but also crafted several original episodes. Meiser returned to work on The New Adventures until 1943, when she left over a dispute with a sponsor over the amount of violence in the program, returning again to write the seventh season.

Sherlock and Dr. Watson were played by many different actors, initially by Richard Gordon and Leigh Lovell respectively in the original series, then primarily by Basil Rathbone and Nigel Bruce in The New Adventures. The original series consisted of 179 episodes over five seasons, and The New Adventures had 374 episodes over nine seasons. They both aired on a variety of different networks over the course of their runs. -

Sources: +

+

Performers: William Gillette, Clive Brook, Richard Gordon, Louis Hector, Leigh Lovell, Harry West, Joseph Bell, Sir John Gielgud, Sir Ralph Richardson, Orson Welles

+

Sources: wikipedia.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/soldiers-of-the-press.html b/site/partial/series/soldiers-of-the-press.html index e18ca34..be6233f 100644 --- a/site/partial/series/soldiers-of-the-press.html +++ b/site/partial/series/soldiers-of-the-press.html @@ -378,9 +378,12 @@

Soldiers of the Press is a war drama that was created in New York and syndicated by the World Broadcasting System. The series features 15-minute episodes that retell recent news stories from action during World War II. The show is narrated by United Press correspondents, including Walter Cronkite and Harrison Salisbury, and covers a variety of events such as the attack on Pearl Harbor, the Marines hitting the beach at Guadalcanal, and Doolittle's bombing raid on Tokyo. Veteran New York actors like Lon Clark and Jackson Beck bring vivid action-based narratives to life, highlighting the dedication, bravery, and sacrifice of wartime correspondents and fighting forces.

The show was broadcast on WOR from February 28, 1943, to August 5, 1945, with a total of 148 episodes known to exist. Currently, there are at least 39 episodes in circulation among fans and collectors. The show was initially aired on WO in New York City before being syndicated by the World Broadcasting System. Some well-known correspondents featured on the show, like Walter Cronkite and Harrison Salisbury, went on to gain greater recognition in the world of journalism. This collection of radio episodes provides a unique glimpse into World War II events as they were experienced and reported during that time, offering a valuable historical resource for those interested in learning more about the war. -

Sources: +

+

Performers: Walter Cronkite, Harrison Salisbury, Ralph Teasdale, Ann Stringer, Lon Clark, Jackson Beck, Eleanor Packard, Frank Hewlett, Charles Arnot

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/space-patrol.html b/site/partial/series/space-patrol.html index ab85db8..41715eb 100644 --- a/site/partial/series/space-patrol.html +++ b/site/partial/series/space-patrol.html @@ -1044,9 +1044,12 @@

Space Patrol is a thrilling adventure series set in the 30th century, which follows the mission of bringing law and order to the interplanetary frontier. Each episode revolves around the Space Patrol crew, commanded by Commander Buzz Corry, as they journey through the universe in Terra V. The show entails high adventure in the wild vast reaches of space, daring missions in the name of interplanetary justice, and travels into the future with Buzz Corry, commander-in-chief of the Space Patrol.

The radio show aired on ABC from September 18, 1950, to March 19, 1955, and is known to have 129 episodes. The show developed a significant adult audience by 1954, consistently ranking among the top 10 Saturday broadcasts. The show also had a TV series that aired from March 1950 to February 1955. Space Patrol boasted a talented cast, including Ed Kemmer as Commander Corry, Lyn Osborn as Cadet Happy, Virginia Hewitt as Carol Karlyle, Ken Mayer as Major Robbie Robertson, Norman Jolley as Dr Malingro, Nina Bara as Tonga, and Bela Kovacs as Prince Baccarritti. It was produced and directed by Larry Robertson and Mike Moser, with Lou Huston serving as the writer. -

Sources: +

+

Performers: Ed Kemmer, Lyn Osborn, Virginia Hewitt, Ken Mayer, Norman Jolley, Nina Bara, Bela Kovacs, Dick Tufeld, Dick Wesson

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/speed-gibson-of-the-international-secret-police.html b/site/partial/series/speed-gibson-of-the-international-secret-police.html index 4c7e324..2d0cc74 100644 --- a/site/partial/series/speed-gibson-of-the-international-secret-police.html +++ b/site/partial/series/speed-gibson-of-the-international-secret-police.html @@ -1620,9 +1620,12 @@

Speed Gibson of the International Secret Police is a radio adventure series written by Virginia Cooke that follows the exploits of 15-year-old pilot Speed Gibson. He becomes a member of the International Secret Police through his uncle Clint Barlow and encounters fascinating adventures that involve shortwave radio, aviation, and crime-fighting missions. The series is divided into two storylines - "The Menace of the Octopus," where Speed is inducted into the International Secret Police and pursues the Octopus and his gang in the Orient; and "Speed Gibson and the Atlantian Syndicate," which sees him continue his adventures in Africa.

The show aired weekly from January 2, 1937, to May 25, 1940, and had a total of 178 episodes, each lasting approximately fifteen minutes. It is believed that Elliott Lewis may have starred in the title role, though this cannot be confirmed. Other notable actors included Howard McNear as uncle Clint Barlow and John Gibson as sidekick Barney Dunlap. The opening theme featured the drone of an airplane and the voice of an air traffic controller urgently calling, "Ceiling zero… ceiling zero… ceiling zero!" The series is well-remembered for having all 178 episodes survive intact. -

Sources: +

+

Performers: Howard McNear, John Gibson, Gale Gordon, Hanley Stafford, Jack Mathers, Victor Rodman, Sam Edwards

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/stand-by-for-crime.html b/site/partial/series/stand-by-for-crime.html index c5c9fba..4e90cdc 100644 --- a/site/partial/series/stand-by-for-crime.html +++ b/site/partial/series/stand-by-for-crime.html @@ -252,9 +252,12 @@

Stand By for Crime is a crime drama radio show from the early 1950s that adopts a "true story" style of delivery, reminiscent of classic crime shows such as Gangbusters and Mr. District Attorney. Although not a true crime show, it features a very believable news anchor named Chuck Morgan, played by Glen Langen, who works at a Los Angeles radio station called KOP. He is friends with Lieutenant Bill Miggs of the police force who tips him off about crime news. Carol Curtis, played by Adele Jurgens, is Morgan's "Gal Friday" who also gets involved in these crime capers. The trio encounters various characters, mostly with shady backgrounds. The dialogue is well-written and engaging, with enjoyable old-school repartee between Morgan and Curtis.

The radio show was broadcast in the early 1950s, while a related American television police drama aired on ABC from January 11 to August 27, 1949. The TV series starred veteran newsman Myron Wallace, who later became known as Mike Wallace, and was notable for being the first program to be transmitted from Chicago to New York City. A total of 1,000 episodes have been documented for the radio show, and it remains a popular and intriguing listen for fans of crime dramas from the golden age of radio. -

Sources: +

+

Performers: Glen Langen, Adele Jurgens

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/strange-as-it-seems.html b/site/partial/series/strange-as-it-seems.html index a9657f5..ea15e61 100644 --- a/site/partial/series/strange-as-it-seems.html +++ b/site/partial/series/strange-as-it-seems.html @@ -585,9 +585,12 @@

Strange as it Seems was a radio program that offered listeners strange and unusual tales about fantastic people and events. Based on the daily syndicated newspaper cartoon panels created by John Hix, the show featured a blend of dramatized events, mini plays, and fanfare music, all designed to entertain and educate the audience about the marvels of the world. The program typically included 2 or 3 dramatic segments, followed by an Ex-Lax commercial and 2 or 3 strange stories. The show would then conclude with a preview of the next show's stories, another Ex-Lax commercial, a quirky fact, and a short musical ending. Live interviews with unusual personalities, such as the World's Fastest Talker, were also occasionally featured.

The radio show first aired on March 22, 1935, on the Columbia Don Lee Coast radio network and was initially broadcast three nights a week. Later changes in the schedule and format occurred until December 1938 when the show ceased airing. The program returned as a 30-minute network program on the CBS network from August 17, 1939, to December 26, 1940. The show had a final run in its original 15-minute format from November 10, 1946, to April 13, 1947. Throughout its years of broadcast, the program had several sponsors, such as Ex-Lax and Palmolive Shave Cream. Many of the original programs were recorded on 16-inch 33 RPM records, with at least 39 of these records, encompassing a total of 78 programs, known to exist. -

Sources: +

+

Performers: Gayne Whitman, Cyril Armbrister, Felix Mills

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/strange-wills.html b/site/partial/series/strange-wills.html index 223cc3a..fd1876f 100644 --- a/site/partial/series/strange-wills.html +++ b/site/partial/series/strange-wills.html @@ -261,9 +261,12 @@

Strange Wills was a unique radio program that focused on the complexities, dramas, and legal entanglements that arise from certain wills, often featuring unusual bequests or missing heirs. Based on actual wills with the names of those involved changed, the stories were compiled by lawyer-turned-author Ken Krippene and showcased the exceptional talents of stage and film star Warren William, who portrayed Probate Attorney Warren Francis O'Connell. The cast for most of the productions included its host and star, Warren William, and co-stars such as Howard Culver and Carleton G. Young, as well as many of the West Coast's finest voice talent, creating a captivating and engaging show.

The show was syndicated in 1946 and produced in Hollywood by Charles Michelson and Teleways Syndication. It aired for one season of 26 episodes, although it's speculated that more were in production. Only four episodes are in circulation today. Later, Charles Michelson bought the syndication rights from Teleways and licensed them further to Grace Gibson Radio Productions for distribution in Australia. The series was renamed as I Devise and Bequeath, and five shows were created, of which four are in circulation. However, these used the same scripts as the Strange Wills show. Unfortunately, Warren William passed away in 1948, and no further work on the series is known to have occurred. -

Sources: +

+

Performers: Warren William, Howard Culver, Carleton G. Young, Lurene Tuttle, William Conrad, Peggy Webber

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/superman.html b/site/partial/series/superman.html index 854995d..1b7f12d 100644 --- a/site/partial/series/superman.html +++ b/site/partial/series/superman.html @@ -10548,9 +10548,12 @@

Adventures of Superman is a superhero fiction and action-adventure radio show that follows the story of Superman, a DC Comics character. The show is packed with exciting episodes, ranging from the pre-jet flight era in 1939 up through the atomic 1950s. Throughout these decades, Superman takes on various challenges, including battling Nazi spies, uncovering evil genius schemes, and fighting extraterrestrial beings. In addition to the iconic character, a smart and cynical Lois Lane, portrayed by Joan Alexander, provides insight into the working women of World War II, while Perry White and Jimmy Olsen interact with Superman.

The Adventures of Superman originally aired from 1940 to 1951, spanning a total of 2,088 episodes across differing American radio networks. Its storylines involved, among other things, a powerful blow against the Ku Klux Klan's prospects in the northern United States. This impact occurred when human rights activist Stetson Kennedy infiltrated the KKK and used his knowledge to create a story arc featuring Superman fighting the Klan, trivializing their rituals and decreasing the group's potential attracting power. The series also earned spectacular ratings, with Kellogg's Pep Cereal as its sponsor. Bud Collyer played Superman, whose identity remained a secret for many years, and other notable actors included Joan Alexander as Lois Lane, Julian Noa as Perry White, and Jackie Kelk as Jimmy Olsen. -

Sources: +

+

Performers: Bud Collyer, Joan Alexander, Julian Noa, Jackie Kelk

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/suspense.html b/site/partial/series/suspense.html index 284af13..b8ce57d 100644 --- a/site/partial/series/suspense.html +++ b/site/partial/series/suspense.html @@ -8163,9 +8163,12 @@

Suspense was a radio drama series that aired on CBS Radio from 1940 through 1962. Focusing on suspense thriller-type scripts, the show gained a reputation for providing "radio's outstanding theater of thrills" and managed to attract several leading Hollywood actors of the era. Often featuring high production values and gripping stories, Suspense truly stood out in its genre. Many of the show's best episodes were original radio plays created specifically for the series, with some classic stories and novellas adapted occasionally. The show attracted a wide array of A-list Hollywood stars, such as Cary Grant, Orson Welles, Joseph Cotten, and many others.

The show was broadcast for over twenty years, starting in January 1942, with a total of 947 performances. It went through several major phases, characterized by different hosts, sponsors, and director/producers. Nearly all (approximately 895) episodes are still available to collectors today. The series had a generous budget from CBS and in 1948, it became popular enough to be broadcast for a complete hour rather than just thirty minutes. The actor Robert Montgomery was brought in to introduce the plays while replacing the "Man in Black" character and occasionally starring in them. The show continued to produce high-quality drama and attract notable actors until the rise of television and budget constraints affected the industry. After airing its last two radio dramas on September 30, 1962, Suspense ended its run, marking a major milestone in radio drama history. -

Sources: +

+

Performers: Lurene Tuttle, Rosalind Russell, Jimmy Stewart, Gene Kelly, Charles Ruggles, Alice Frost, Jack Webb, Alfred Hitchcock, Alan Ladd, Dane Clark, Cary Grant, Susan Hayward, Rita Hayworth, Peter Lorre, Vincent Price, Charles Laughton, Loretta Young, Lillian Gish, Olivia de Havilland, Orson Welles, James Stewart

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/tales-of-the-diamond-k.html b/site/partial/series/tales-of-the-diamond-k.html index a1e2fbe..296ef3e 100644 --- a/site/partial/series/tales-of-the-diamond-k.html +++ b/site/partial/series/tales-of-the-diamond-k.html @@ -360,9 +360,12 @@

Tales of the Diamond K was a syndicated radio show aimed at a juvenile audience that featured captivating stories from the Old West. The show was hosted and narrated by Ken Maynard and often involved tales of cowboys and cattle trails, rodeos and parades, hidden gold and buried treasure. The stories were set in Ken Maynard's Diamond K Ranch, and the series aimed to intrigue and entertain young listeners with self-contained, adventurous episodes.

The show aired in the mid-1950s on a daily basis for 15-minute episodes, with some sources indicating that as many as a thousand shows were produced. However, only 39 episodes are known to be in existence today. Ken Maynard was a renowned movie cowboy and one of the first singing cowboys, who appeared in over 90 films between the 1920s and mid-1940s. The show's radio format featured premiums such as an offer for a personalized phonograph recording of Maynard's stories and a Western "K-Shirt" with the Diamond K Brand on it. -

Sources: +

+

Performers: Ken Maynard

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/tales-of-the-texas-rangers.html b/site/partial/series/tales-of-the-texas-rangers.html index 8cbe14b..d80a23d 100644 --- a/site/partial/series/tales-of-the-texas-rangers.html +++ b/site/partial/series/tales-of-the-texas-rangers.html @@ -810,9 +810,12 @@

Tales of the Texas Rangers was a western radio drama that strayed from its genre by focusing on modern crimes that took place in Texas between 1928-1948 rather than being set in the 1800s like most Westerns of the time. Modeled after the successful Dragnet program, this police drama employed sophisticated scientific techniques to track down and apprehend criminals. Based on the real-life Texas Ranger Division, which was initially formed in 1823 by Stephen Austin and now consists of 150 commissioned officers, the show aimed to provide realistic and accurate portrayals of the Rangers' work.

The series ran on the NBC radio network from July 8, 1950, until September 14, 1952, with 95 episodes and one audition episode. It was produced and directed by Stacy Keach Sr., who enlisted real-life Texas Ranger Captain Manuel "Lone Wolf" Gonzaullas as an advisor. Actor Joel McCrea starred as Texas Ranger Jace Pearson in the radio show, which later moved to television from 1955-1958 with Willard Parker taking over the role. The TV version of the show was not limited to a contemporary timeframe and could jump from the 1840s to the 1950s from week to week. Additionally, 22 comic books about the Texas Rangers were published from 1952 until 1959, depicting either McCrea or Parker on the cover. -

Sources: +

+

Performers: Joel McCrea, Willard Parker, Harry Lauter

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/tarzan-and-the-diamond-of-asher.html b/site/partial/series/tarzan-and-the-diamond-of-asher.html index 8348560..afe001d 100644 --- a/site/partial/series/tarzan-and-the-diamond-of-asher.html +++ b/site/partial/series/tarzan-and-the-diamond-of-asher.html @@ -369,9 +369,11 @@

Tarzan and the Diamond of Asher is a radio show featuring the iconic fictional character Tarzan, created by Edgar Rice Burroughs. The show is an exciting serial adapted from the novel, Tarzan and the Forbidden City. The story takes place deep in the heart of Africa, where a mysterious extinct volcano houses the Forbidden City of Asher. Throughout the series, two safaris face danger, death, and adventure as they endure hardships and perils. One safari, led by a cunning Oriental, seeks the Father of Diamonds, while the other aims to rescue their leader's son. As intrigue, mystery, and danger unfold, Tarzan, Lord of the Jungle, navigates through the challenges presented in the story.

The serial began airing on May 14, 1934, with episodes released every Monday, Wednesday, and Friday for a total of 39 15-minute episodes. Tarzan and the Diamond of Asher was directed by Fred Shields and narrated by John McIntire. Throughout its run, the show captivated audiences with its thrilling plot, memorable characters, and adventurous themes. -

Sources: +

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/tarzan-and-the-fires-of-tohr.html b/site/partial/series/tarzan-and-the-fires-of-tohr.html index f4cb744..2d98001 100644 --- a/site/partial/series/tarzan-and-the-fires-of-tohr.html +++ b/site/partial/series/tarzan-and-the-fires-of-tohr.html @@ -369,9 +369,11 @@

Tarzan and the Fires of Tohr is a thrilling radio serial that follows the adventures of Tarzan and his friend, Paul D'Arnot, as they investigate the illegal activities of slave traders and ivory smugglers. After saving a member of the Burton-Ashleigh expedition from death, they learn that the rest of the group is lost and agree to help them find their way out of the jungle. However, they soon find themselves captured by a mysterious yellow race and taken to the lost city of Tohr, where they face a series of dangerous challenges, including the arenas, rogue elephants, and sacrifice to the Fires of Tohr - a volcanic fire pit hidden beneath the temple of their lion-like god. As they navigate through the dangers, they encounter love, hate, jealousy, political intrigue, courage, and loyalty, making for an engaging and exciting story.

This enticing series, produced under the personal direction of Edgar Rice Burroughs, is comprised of 15-minute installments and was transcribed for a limited release. Tarzan and the Fires of Tohr is one of four separate Tarzan productions, alongside Tarzan of the Apes (1932-1934), Tarzan and the Diamond of Asher (1934), and Tarzan, Lord of the Jungle (1951-1953). Although the show saw limited release, its captivating story, creative challenges, and vividly described environments have made it a memorable installment in the Tarzan series. -

Sources: +

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/tarzan-lord-of-the-jungle.html b/site/partial/series/tarzan-lord-of-the-jungle.html index 87a316f..5f17bf9 100644 --- a/site/partial/series/tarzan-lord-of-the-jungle.html +++ b/site/partial/series/tarzan-lord-of-the-jungle.html @@ -693,9 +693,11 @@

Tarzan: Lord of the Jungle is an exciting radio show that features the adventures of Tarzan, a character who has been raised in the dense African jungles since infancy. Known as Tarzan of the Apes, he lives among the wild animals and navigates the dangerous terrain with ease. The show's format is episodic, allowing listeners to follow Tarzan's thrilling escapades and consistently experience new adventures. With compelling storytelling and vivid sound effects, the show immerses its audience into the wild and untamed world of Tarzan.

Tarzan: Lord of the Jungle was broadcast from 1951 to 1953 and was produced by Commodore Productions and Artists, Inc. The radio show aired on multiple networks, and a total of 75 episodes were recorded and aired. The show has since become a classic, and thus, many episodes have been preserved for future generations to enjoy. Additionally, the popularity of the character and his adventures has led to the creation of related television series and the expansion of the franchise into other media formats. -

Sources: +

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/tarzan-of-the-apes.html b/site/partial/series/tarzan-of-the-apes.html index d34ce9b..3810420 100644 --- a/site/partial/series/tarzan-of-the-apes.html +++ b/site/partial/series/tarzan-of-the-apes.html @@ -711,9 +711,12 @@

Tarzan of the Apes was a radio show that brought the thrilling adventures of Edgar Rice Burroughs' iconic character Tarzan to American families through a unique pre-recorded format. The show featured Edgar Rice Burroughs' daughter, Joan Burroughs, as Jane and her husband, former movie Tarzan, Jim Pierce, as the Lord of the Jungle. The Tarzan show was distinctive in its use of state-of-the-art recording technology and elaborate sound effects to immerse listeners in the world of jungle noises, including the roaring of lions, the screaming of panthers, and the cries of bull apes. Imagination played a significant role for the audience as the vivid sounds transported them into the heart of Tarzan's adventures.

Tarzan of the Apes first aired on September 10, 1932; it was broadcast in fifteen-minute episodes over two years. Throughout the series' run, four separate productions took place, including Tarzan and the Diamond of Asher (1934) and Tarzan, Lord of the Jungle (1951-1953). The show premiered live at the Fox Pantages Theatre in Hollywood, attracting over 3,000 attendees to the unique event. The Signal Oil Company partly sponsored the show, with promotions and Tarzan puzzles available to customers as they filled their cars with Tarzan-branded gasoline. -

Sources: +

+

Performers: Joan Burroughs, Jim Pierce

+

Sources: archive.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-adventures-of-ellery-queen.html b/site/partial/series/the-adventures-of-ellery-queen.html index cef686a..7c51fcc 100644 --- a/site/partial/series/the-adventures-of-ellery-queen.html +++ b/site/partial/series/the-adventures-of-ellery-queen.html @@ -306,9 +306,12 @@

The Adventures of Ellery Queen is a radio detective program that features an amateur mystery writer in New York City, who helps his police inspector father to solve baffling murder cases. Adapted from the novels and short stories written by Frederic Dannay and Manfred Bennington Lee, the show's format invites a panel of armchair detectives to try to solve each case during its broadcast. A "Challenge to the Reader" is inserted right before the solution, declaring that the reader has seen all the same clues Ellery Queen has, and only one solution is possible. The show's tone is less "hardboiled" than other pulp detective stories of the time, embracing the intellectual aspect of solving mysteries.

The Adventures of Ellery Queen aired from June 18, 1939, to May 27, 1948, and appeared on different networks, including CBS, NBC, and ABC. Over its run, it featured a total of over 750 guest panelists. The radio show was expanded into the Ellery Queen's Minute Mysteries in the mid-1960s, primarily working as "filler" spots with 70-second mysteries that included all the clues and a local sponsor message. -

Sources: +

+

Performers: Hugh Marlowe, Carleton Young, Sydney Smith, Lawrence Dobkin, Howard Culver, Ken Roberts, Bert Parks, Ernest Chappell, Don Hancock, Paul Masterson

+

Sources: wikipedia.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-adventures-of-frank-race.html b/site/partial/series/the-adventures-of-frank-race.html index dc0d628..ab108db 100644 --- a/site/partial/series/the-adventures-of-frank-race.html +++ b/site/partial/series/the-adventures-of-frank-race.html @@ -405,9 +405,12 @@

The Adventures of Frank Race was an adventure melodrama radio show that focused on its protagonist, Frank Race, a former attorney who traded his career for the world of intrigue in the OSS during World War II. After the war, he set out to make adventure his new business. Alongside his sidekick Mark Donovan, Race often began his adventures in New York but traveled the world to investigate international insurance scams and other crimes. The show featured elements of espionage, cloak-and-dagger mystery, and even some romance, making it a unique mix of genres that could be considered a blend of more established shows like Dangerous Assignment and Yours Truly, Johnny Dollar.

The show first premiered on the East Coast on May 1, 1949, and continued until February 19, 1950, with a second run airing on the West Coast from June 5, 1951, to March 25, 1952. It was a syndicated show produced by Bruce Eells Productions in Hollywood. The initial 22 episodes starred Tom Collins as Frank Race before Paul Dubov took over the role for the remainder of the series. Tony Barrett portrayed Mark Donovan, and the show was written and directed by Joel Murcott and Buckley Angel. There were 43 episodes of the radio show, and due to its syndicated nature, it aired on different stations and days for various markets. -

Sources: +

+

Performers: Tom Collins, Paul Dubov, Tony Barrett, Jack Kruschen, Wilms Herbert, Lillian Buyeff, Frank Lovejoy, Harry Lang

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-adventures-of-marco-polo.html b/site/partial/series/the-adventures-of-marco-polo.html index 965e6f9..ecb6e50 100644 --- a/site/partial/series/the-adventures-of-marco-polo.html +++ b/site/partial/series/the-adventures-of-marco-polo.html @@ -486,9 +486,12 @@

The Adventures of Marco Polo is an adventure radio show with a gripping plot, vibrant characters, and a captivating atmosphere. The show, set in the 13th century, follows the journey of the famous Venetian merchant and explorer Marco Polo as he embarks on a treacherous voyage to the exotic land of China. Along with his assistant Binguccio, the duo encounters shipwrecks, scorching deserts, and treacherous mountains, before finally reaching the palace of the powerful ruler Kublai Khan. The radio show is rich in gripping tales of friendship, loyalty, and love, transporting the audience to a world of wonders and excitement.

The Adventures of Marco Polo was first broadcast in 1938 and continued for several years, with the series airing on major radio networks. Many episodes were produced during its run, but only a limited number of these are still available today for listeners to enjoy. This classic radio program has been celebrated as a successful adaptation of Marco Polo's incredible journey, and even inspired a 1938 adventure film directed by Archie Mayo, starring Gary Cooper, Sigrid Gurie, and Basil Rathbone. Despite mixed reviews from critics, the radio show left a lasting impression on the audience and became a memorable part of radio history. -

Sources: +

+

Performers: Gary Cooper, Sigrid Gurie, Basil Rathbone, Ernest Truex, Binnie Barnes, Alan Hale, H.B. Warner, Robert Greig, Ferdinand Gottschalk, Henry Kolker, Lotus Liu, Stanley Fields, Harold Huber, Lana Turner, Harry Cording, Jason Robards Sr., Charles Stevens

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-adventures-of-ozzie-and-harriet.html b/site/partial/series/the-adventures-of-ozzie-and-harriet.html index 0ca2f95..12ca2b5 100644 --- a/site/partial/series/the-adventures-of-ozzie-and-harriet.html +++ b/site/partial/series/the-adventures-of-ozzie-and-harriet.html @@ -702,9 +702,12 @@

The Adventures of Ozzie and Harriet is an American sitcom that starred the real-life Nelson family. The show's premise revolved around the everyday life of the Nelsons, consisting of the entertainment duo of Ozzie Nelson and his wife, singer Harriet Nelson, and their sons, David and Ricky. The series was known for its focus on family values, humor, and relatability, showcasing the family's interactions with neighbors, friends, and each other. It aimed to depict a realistic portrayal of an American family while maintaining a light and entertaining tone. Much of the series' storylines were inspired by the actual lives of the Nelson family, which contributed to the show's authentic and engaging style.

The Adventures of Ozzie and Harriet began as a radio show in 1944 and transitioned to television in 1952. The TV series aired on ABC from October 3, 1952, to April 23, 1966, making it the longest-running live-action sitcom in U.S. television history at the time, with a total of 435 episodes produced. The radio show aired on various networks, including CBS, NBC, and ABC, with a total of 402 radio episodes recorded. The TV series was later adapted into a feature film titled Here Come the Nelsons in 1952, which starred the Nelson family alongside actor Rock Hudson. Throughout its run, the show's sponsors included International Silver Company, H.J. Heinz Company, and Lambert Pharmacal's Listerine. Notable actors and recurring characters in the series included Don DeFore as "Thorny," Parley Baer as Clarence Darby, and Lyle Talbot as Joe Randolph. -

Sources: +

+

Performers: Ozzie Nelson, Harriet Nelson, David Nelson, Ricky Nelson, Don DeFore, Parley Baer, Lyle Talbot, Mary Jane Croft, Connie Harper, Skip Young, Gordon Jones, Frank Cady, Elroy Williams, Lloyd Corrigan, Joseph Kearns, James Stacy, Jack Wagner, Joe Flynn, Kent McCord, Jimmy Hawkins

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-adventures-of-sam-spade.html b/site/partial/series/the-adventures-of-sam-spade.html index 2bf6963..d7c7039 100644 --- a/site/partial/series/the-adventures-of-sam-spade.html +++ b/site/partial/series/the-adventures-of-sam-spade.html @@ -729,9 +729,12 @@

The Adventures of Sam Spade was a radio series centered around the character of Sam Spade, a San Francisco detective created by Dashiell Hammett for his 1930 crime novel, The Maltese Falcon. The show was brought to radio by William Spier, a renowned master of mystery who had previously worked on the highly rated thriller, Suspense. The series portrayed Sam Spade as a hardboiled detective with a deep, cynical voice (played by Howard Duff and later Stephen Dunne), known for his distinctive traits such as riding streetcars, disliking cabs, and enjoying cheap liquor. Spade dictated his cases to his secretary, Effie Perrine (played by Lurene Tuttle), a talkative and lovesick woman. Each episode unfolded chronologically, shifting between Sam and Effie's interactions and the dramatization of Sam's dictation.

The show was initially aired on ABC in 1946 as a summer series, then ran as a regular CBS show from 1946 to 1949, and finally on NBC from 1949 to 1951. Over its five-year run, the series featured 13 episodes on ABC, 157 episodes on CBS, and 75 episodes on NBC. The Adventures of Sam Spade was notable for its tongue-in-cheek approach to the character, differentiating it from the more serious tone of the novel and movie adaptations. -

Sources: +

+

Performers: Howard Duff, Steve Dunne, Lurene Tuttle, John McIntire, William Conrad

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-aldrich-family.html b/site/partial/series/the-aldrich-family.html index 405248b..aa392ed 100644 --- a/site/partial/series/the-aldrich-family.html +++ b/site/partial/series/the-aldrich-family.html @@ -801,9 +801,12 @@

The Aldrich Family is a popular radio teenage situation comedy that revolves around the misadventures of Henry Aldrich, a likable and awkward teen. The show is set in Centerville, USA and follows Henry's relationships with his friends, family, and romantic interests. The creation of playwright Clifford Goldsmith, the show is known for its opening exchange, where Henry's mother calls "Hen-reeeeeeeeeeeee! Hen-ree Al-drich!", and he responds with a breaking adolescent voice, "Com-ing, Mother!"

The show was broadcast from July 2, 1939, to April 19, 1953, airing on both NBC and CBS radio networks. The role of Henry Aldrich was originally played by Ezra Stone, who left the series in 1942 to serve in the army during World War II. Stone later returned to the series in 1945, with other notable actors such as Norman Tokar, Dickie Jones, Raymond Ives, and Bobby Ellis also playing the role of Henry during the show's 14-year run. The Aldrich Family was adapted into 11 films by Paramount Pictures between 1939 and 1944, as well as airing on NBC TV from October 1949 through the 1953 season. -

Sources: +

+

Performers: Eddie Bracken, Betty Field, Butterfly McQueen, Ezra Stone, Jackie Kelk, Dickie Jones, Raymond Ives, Bobby Ellis, Agnes Moorehead

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-baby-snooks-show.html b/site/partial/series/the-baby-snooks-show.html index 852d3f1..90bfc27 100644 --- a/site/partial/series/the-baby-snooks-show.html +++ b/site/partial/series/the-baby-snooks-show.html @@ -828,9 +828,12 @@

The Baby Snooks Show was an American radio program starring comedian Fanny Brice as Baby Snooks, a mischievous young girl who was 40 years younger than the actress who played her. The series began as a comic strip called "The Newlyweds" featuring a couple and their child, Baby Snookums. Fanny Brice then began doing her Baby Snooks character in vaudeville and eventually made it to Broadway in the Follies show. The radio program became a nation's favorite situational comedy, featuring the character's hilarious pranks and antics, along with Snooks' long-suffering, often-cranky father, Lancelot "Daddy" Higgins. The show was known for its lively, humorous tone and style.

The Baby Snooks Show was broadcast on CBS beginning on September 17, 1944, airing on Sunday evenings as Post Toasties Time, with General Foods as its sponsor. The title soon changed, and the series was sometimes called Baby Snooks and Daddy. The show had various sponsors and announcers over the years and in the fall of 1946, moved to Friday nights at 8 pm, continuing on CBS until May 28, 1948. On November 9, 1949, the series moved to NBC, where it aired Tuesdays at 8:30 pm sponsored by Tums, continuing until May 22, 1951. Hanley Stafford played Daddy Higgins, while other notable actors such as Danny Thomas and Alan Reed were also involved in the production. Baby Snooks made an appearance in the 1938 film "Everybody Sing" with Judy Garland. The show ended with the death of Fanny Brice in 1951. They had only made one appearance on television, on a CBS-TV show called Popsicle Parade of Stars. -

Sources: +

+

Performers: Fanny Brice, Hanley Stafford, Lalive Brownell, Leone Ledoux, Danny Thomas, Ben Alexander, Elvia Allman, Sara Berner, Charlie Cantor, Ken Christy, Earl Lee, Frank Nelson, Lillian Randolph, Alan Reed, Irene Tedrow, Lois Corbet, Arlene Harris

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-bickersons.html b/site/partial/series/the-bickersons.html index 765ffc5..df1639a 100644 --- a/site/partial/series/the-bickersons.html +++ b/site/partial/series/the-bickersons.html @@ -279,9 +279,12 @@

The Bickersons was a radio comedy sketch series that featured a married couple, John and Blanche Bickerson, who spent most of their time together engaging in relentless verbal battles. The show was created by Philip Rapp, known for writing the Fanny Brice skits which eventually evolved into the popular Baby Snooks radio show. Hosted by Don Ameche and singer-actress Frances Langford, the show had a sitcom format, with John and Blanche often arguing about various topics such as jobs, money, and each other's family members. While most of their skits depicted their constant bickering and arguments, there were moments when the couple showed tenderness towards one another, suggesting an underlying love despite their constant disputes.

The Bickersons premiered on September 8, 1946, on NBC and later moved to CBS, where it continued until August 28, 1951. A total of 166 episodes aired, of which 32 are known to still exist today. The show later had a few television runs with Lew Parker taking over the role of John Bickerson, but the chemistry between Parker and Langford did not work as well as it had with Ameche. Notable sponsors for the show included Drene Shampoo and Maxwell House Coffee Time. The cast also featured future children's television star Pinky Lee in occasional supporting roles. -

Sources: +

+

Performers: Don Ameche, Frances Langford, Lew Parker

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-big-show.html b/site/partial/series/the-big-show.html index 1ea7d9e..6e576b2 100644 --- a/site/partial/series/the-big-show.html +++ b/site/partial/series/the-big-show.html @@ -288,9 +288,12 @@

The Big Show is a radio program that features famous guests performing skits, songs, and comedic routines, with the aim of attracting dwindling audiences back to radio. Hosted by Tallulah Bankhead, the 90-minute show was known for its stellar line-up of guests, which included names such as Ethel Merman, Danny Thomas, Fanny Brice, Phil Silvers, Bob Hope, Clifton Webb, Gloria Swanson, Marlene Dietrich, Judy Holliday, Ethel Barrymore, Jimmy Durante, Milton Berle, and many more. The show's format included comedy, drama, and music, all performed by the biggest stars of the time.

The Big Show premiered on November 5, 1950, and aired on the NBC radio network every Sunday night for the next three years. A total of 57 episodes are known to exist today. The show was considered a rousing success and played an important role in keeping American radio alive during the advent of television. NBC invested heavily in the show, with some episodes costing over $100,000 to produce. The show featured several notable sponsors, including the Kingsport Times-News and featured top talent from various forms of entertainment, including film, stage, music, and radio. -

Sources: +

+

Performers: Tallulah Bankhead, Ethel Merman, Danny Thomas, Fanny Brice, Phil Silvers, Bob Hope, Clifton Webb, Gloria Swanson, Marlene Dietrich, Judy Holliday, Ethel Barrymore, Jimmy Durante, Milton Berle, Josephine Baker, Laurence Olivier, Vivien Leigh, George Sanders, Yul Brynner, Shirley Booth, Peggy Lee, Rosalind Russell, Merv Griffin

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-big-story.html b/site/partial/series/the-big-story.html index 0c445f8..1721cbd 100644 --- a/site/partial/series/the-big-story.html +++ b/site/partial/series/the-big-story.html @@ -360,9 +360,11 @@

The Big Story was a true crime radio drama that focused on real-life news stories, primarily featuring murder and other violent crime cases from the perspective of a newspaper reporter. Each week, the show dramatized the heroic deeds of a different news reporter who had solved a crime, exposed corruption, or performed a notable public service. At the end of each program, the actual news reporter was brought on the air and given a $500 reward by the show's sponsor, Pall Mall.

The Big Story aired between April 2, 1947, and March 23, 1955, primarily on NBC radio network. The radio series was top-rated, even surpassing the ratings of Bing Crosby's Philco Radio Time in its first year on air. Sponsored by Pall Mall cigarettes, the program was produced by Bernard J. Prockter, directed by Tom Vietor and Harry Ingram, and scripted by Gail Ingram, Arnold Pearl, and Max Ehrlich. The radio series was also adapted into a television crime drama on NBC which aired from September 16, 1949, until 1958. The TV series transitioned from NBC to syndication for its final season, featuring notable guest stars such as James Dean, Lee Marvin, Walter Matthau, and Steve McQueen. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-bing-crosby-rosemary-clooney-show.html b/site/partial/series/the-bing-crosby-rosemary-clooney-show.html index 32fdabb..e59845d 100644 --- a/site/partial/series/the-bing-crosby-rosemary-clooney-show.html +++ b/site/partial/series/the-bing-crosby-rosemary-clooney-show.html @@ -2016,9 +2016,12 @@

The Bing Crosby - Rosemary Clooney Show featured entertainers Bing Crosby and Rosemary Clooney in a 20-minute program aimed at female listeners. The show's format involved taping dialogues weeks in advance and incorporating songs performed by Crosby and Clooney either as solos or duets. The program had a fun and informal tone, with Crosby and Clooney's friendly banter and musical performances delighting listeners.

The show was broadcast on CBS from February 29, 1960, to September 28, 1962, with a total of 675 episodes. It had various sponsors, including Norcross Greeting Cards, Fels & Company, GE light bulbs, Cheerios, Eastern Products Corporation, Squirt, Sara Lee, D-zerta, The Saturday Evening Post, Four-Way cold tablets, Cat’s Paw Shoe Repairers, Matey, Del Monte, Wrigley’s Spearmint Gum, Ry-Krisp, DuPont, Dacron, Royal Edge and Royal Lining Paper, U.S. Steel, and Good Housekeeping. The show starred Crosby and Clooney, along with Buddy Cole and his Trio, and it was written by Bill Morrow and produced by Murdo MacKenzie. -

Sources: +

+

Performers: Bing Crosby, Rosemary Clooney, Buddy Cole, Ken Carpenter

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-blue-beetle.html b/site/partial/series/the-blue-beetle.html index 463fb00..badb936 100644 --- a/site/partial/series/the-blue-beetle.html +++ b/site/partial/series/the-blue-beetle.html @@ -225,9 +225,12 @@

The Blue Beetle follows the story of Dan Garrett, a rookie patrolman who transforms himself into the mysterious Blue Beetle, a daring crusader for justice, by donning bullet-proof blue chain mail. Created by Charles Nicholas, the character first appeared in the comic book Mystery Men in 1939. In his quest for justice, young Dan Garrett turns to a second life of fighting crime as the Blue Beetle, equipped with a costume of bullet-proof chain-mail-like cellulose material, a small beetle-shaped marker, a "Beetle Signal" flashlight, and various other crime-fighting gadgets including a revolver, the "BeetleMobile" car, the "BeetleBird" airplane, and a "magic ray machine."

The Blue Beetle radio serial aired from May 15, 1940, to September 13, 1940, as a CBS 30-minute syndicated series. Actor Frank Lovejoy voiced the Blue Beetle for the first thirteen episodes, and later episodes were uncredited. Despite its short radio duration, the Blue Beetle enjoyed popularity in newspaper syndication and continued comic book adventures. Furthermore, the Blue Beetle is one of the few golden age characters to survive into the present day, although the character has undergone many changes and revisions since its inception. -

Sources: +

+

Performers: Frank Lovejoy

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-burns-and-allen-show.html b/site/partial/series/the-burns-and-allen-show.html index 9138df4..02de051 100644 --- a/site/partial/series/the-burns-and-allen-show.html +++ b/site/partial/series/the-burns-and-allen-show.html @@ -1710,9 +1710,12 @@

The Burns and Allen Show starred American comedy duo George Burns and Gracie Allen. The pair portrayed a married couple who entertained radio audiences with their contrasting personalities and banter. Burns, playing the straight man, often found himself flustered by the hilariously convoluted logic of his addle-headed wife, Allen. Balancing humor and warmth, the show's format often involved the duo engaging in humorous domestic situations and misunderstandings, as well as interacting with characters played by other actors on the show.

The Burns and Allen Show originally started airing in September 1934 under the title The Adventures of Gracie, before adopting its more well-known title in 1936. It aired on both the NBC and CBS radio networks, eventually wrapping up in May 1950. The show then transitioned to television as a situation comedy, which ran from 1950 to 1958, earning 11 Primetime Emmy Award nominations. The Burns and Allen Show was inducted into the National Radio Hall of Fame in 1994, and the duo received a Television Hall of Fame induction in 1988. -

Sources: +

+

Performers: George Burns, Gracie Allen

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-chase.html b/site/partial/series/the-chase.html index 6b54bd9..0decd63 100644 --- a/site/partial/series/the-chase.html +++ b/site/partial/series/the-chase.html @@ -477,9 +477,12 @@

The Chase is an action-packed radio show with a variety of genres including adventure, mystery-horror, crime, and science fiction. Each episode revolves around a central theme of pursuit where the hunter chases the hunted, ensuring high levels of excitement and suspense. The show is known for its exceptional quality, thanks in part to the involvement of director Fred Weihe, who is also noted for his work on X Minus One. The series is created by Lawrence Klee of Mr. Keen fame, and features Fred Collins as the announcer, adding to its immersive and engaging nature. With its thrilling chase scenes and impressive production values, listeners are sure to be captivated by The Chase.

Broadcasted between 1952 and 1953, The Chase aired during the golden age of radio, showcasing numerous episodes spanning the various genres it explored. Although the exact number of episodes is not specified, it is known that many of them still exist today, allowing modern audiences to experience the excitement of this classic radio show. In addition to its notable production team, The Chase also featured many of the same actors from X Minus One, further contributing to its high-quality storytelling. The Chase remains a standout radio production that is sure to leave listeners both entertained and on the edge of their seats. -

Sources: +

+

Performers: Unknown

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-clock.html b/site/partial/series/the-clock.html index 3403e85..c017365 100644 --- a/site/partial/series/the-clock.html +++ b/site/partial/series/the-clock.html @@ -513,9 +513,12 @@

The Clock is a suspense anthology series that follows a 30-minute program format narrated by Father Time. Created by Lawrence Klee, the show's stories are driven by the theme of time, often personified by the show's narrator. The series is known for its ability to captivate its audience through its thrilling narratives and character portrayals. Initially featuring New York radio talent, the production of the show shifted to Hollywood, pushing for a more diverse range of guest actors, including Cathy Lewis, Elliott Lewis, Jeanette Nolan, and Hans Conried.

Airing on the ABC from November 3, 1946, to May 23, 1948, The Clock delivered remarkable and memorable episodes to its audience for two years. The production of the show shifted from New York to Hollywood on March 4, 1948, with William Spier acting as director. Unfortunately, due to the lack of sponsorship, ABC was forced to cancel the series after twelve weeks. In 1955, an Australian version of the program was produced by Grace Gibson Productions. -

Sources: +

+

Performers: Clark Andrews, Cathy Lewis, Elliott Lewis, Jeanette Nolan, Hans Conried, William Conrad

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-clyde-beatty-show.html b/site/partial/series/the-clyde-beatty-show.html index 9a41b7d..3b3af0e 100644 --- a/site/partial/series/the-clyde-beatty-show.html +++ b/site/partial/series/the-clyde-beatty-show.html @@ -486,9 +486,12 @@

The Clyde Beatty Show centered around the adventures of the renowned animal trainer, Clyde Beatty, as he sought new and more exotic beasts for his circus performances. As the owner of the Clyde Beatty Circus, the show follows Beatty's adventures in Africa and India, hunting down animals in their native jungles for his acts. Stemming from a series of books and a film serial of the same name, the program aimed to capture the thrill, excitement, and drama of the circus behind the scenes, while also highlighting Beatty's dangerous encounters and mastery of wild animals.

The Clyde Beatty Show premiered in 1950 and aired on Mondays, Wednesdays, and Fridays, sponsored by Kellogg. A total of 156 syndicated episodes were produced by Commodore Productions and Artists Inc., and were available for sale through the end of 1951. From 1952, the production company switched its focus to developing a Clyde Beatty television program. It is worth noting that along with his career in the circus, Beatty also acted in films from the 1930s to the 1950s and appeared on television until the 1960s. -

Sources: +

+

Performers: Clyde Beatty, Vic Perrin

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-crime-club.html b/site/partial/series/the-crime-club.html index f6d2b5d..19cf396 100644 --- a/site/partial/series/the-crime-club.html +++ b/site/partial/series/the-crime-club.html @@ -297,9 +297,12 @@

The Crime Club was a radio show aired on the Mutual Broadcasting System that featured murder and mystery dramas, many of which were adaptations of books published by the Doubleday Crime Club. Each episode began with a phone call to the series host, The Librarian, who would then invite the caller to listen to a Crime Club story. The Librarian, portrayed by Barry Thomson and Raymond Edward Johnson, would read the prologue, setting an ominous tone for the story to follow. The series featured a variety of sinister and suspenseful tales, with scripts by Stedman Coles and Wyllis Cooper, who were known for their work on Lights Out and Quiet Please.

The show was broadcast from December 2, 1946, to October 16, 1947, with a total of 47 episodes. It aired on Mondays at 8 p.m., and later on Thursdays at 10 p.m., with some stations also airing the show on Wednesdays and Sundays. The radio series was an adaptation of the Doubleday Crime Club publishing imprint, which first began in 1928 and published a wide array of detective and mystery fiction. The Crime Club also had connections to the film industry, with Universal Pictures producing several movies based on the published novels from 1937 to 1939. The radio show was directed and produced by Roger Bower, while veteran Willis Cooper contributed to some of the scriptwriting. -

Sources: +

+

Performers: Barry Thomson, Raymond Edward Johnson

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-damon-runyon-theatre.html b/site/partial/series/the-damon-runyon-theatre.html index a94c0cb..dc702f4 100644 --- a/site/partial/series/the-damon-runyon-theatre.html +++ b/site/partial/series/the-damon-runyon-theatre.html @@ -486,9 +486,12 @@

The Damon Runyon Theatre was an entertaining radio show that captured the charm and essence of author Damon Runyon's unique world of New York City street characters. The show followed the stories and antics of colorful characters such as gamblers, hustlers, actors, and gangsters, all narrated by the central character, Broadway, who was wonderfully portrayed by actor John Brown. With its tongue-in-cheek style and combination of both serious and comical storylines, the show stood out for its talent in adapting Runyon's tales into a seamless atmosphere that beautifully depicted a fantastical version of New York City, capturing the hearts and imaginations of its audience.

The radio show was first aired on the independent radio station KSEL in Lubbock, Texas, between November 1948 and December 1951. Produced by Alan Ladd's Mayfair Transcription Company, the show managed to avoid potential production pitfalls such as the re-shoot of "The Boy with Green Hair" and the infamous "Petrillo Ban" on new radio recordings. A total of 52 episodes were created, showcasing the impressive work of veteran dialecticians like Gerald Mohr, Herb Vigran, Sheldon Leonard, Luis Van Rooten, Alan Reed, and Lionel Stander, who brought vivid authenticity to every episode. The show's popularity also reached television format, with the American anthology TV series Damon Runyon Theater, which aired for a total of 39 episodes on CBS from April 1955 through February 1956. -

Sources: +

+

Performers: John Brown, William Conrad, Gerald Mohr, Anne Whitfield, Frank Lovejoy, Jeff Chandler, Hans Conried, Parley Baer

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-danny-kaye-show.html b/site/partial/series/the-danny-kaye-show.html index 52dbbc6..9df114d 100644 --- a/site/partial/series/the-danny-kaye-show.html +++ b/site/partial/series/the-danny-kaye-show.html @@ -189,9 +189,12 @@

The Danny Kaye Show was a comedy-variety radio program that featured singing, instrumental music, and various kinds of comedy sketches. The show aimed to entertain both children and adults with its lively and humorous content. Danny Kaye, a talented entertainer and one of the first owners of Seattle's baseball club, the Mariners, led the show. Kaye's career in the entertainment industry took off in 1940 when he appeared in the Broadway smash "Lady in the Dark." His wife, Sylvia Fine, played a crucial role in managing his career and contributed to the writing and production of The Danny Kaye Show.

The show was broadcast on CBS radio network from January 6, 1945, to May 31, 1946. A total of 1800 episodes were aired. The show featured notable cast members such as Eve Arden, Lionel Stander, and Frank Nelson, while Harry James provided music with a 26-piece orchestra. Pabst Blue Ribbon beer served as the main sponsor for the show. Despite its talented cast and high production values, The Danny Kaye Show struggled to find its rhythm and received mediocre ratings. Consequently, the show was eventually discontinued on May 31, 1946. However, Kaye went on to enjoy an illustrious career in the entertainment industry, particularly in the realm of Technicolor musicals. -

Sources: +

+

Performers: Danny Kaye, Eve Arden, Frank Nelson, Lionel Stander, Kenny Delmar, Everett Sloane, Joan Edwards, Butterfly McQueen

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-devil-and-mr-o.html b/site/partial/series/the-devil-and-mr-o.html index e020be9..7b4ddcc 100644 --- a/site/partial/series/the-devil-and-mr-o.html +++ b/site/partial/series/the-devil-and-mr-o.html @@ -252,9 +252,11 @@

The Devil and Mr. O was a horror radio program that was part of the famed Lights Out series, which had already become well-known for its graphic sounds of murder and gore. Created by Arch Oboler, the show featured eerie and fantastical stories that combined dialogues, storylines, and sound effects to captivate and draw in listeners. Oboler served as the host for the program, taking on the persona of "Mr. O" and setting an intense and captivating tone that kept listeners on the edge of their seats.

The show aired during the early 1940s, with Arch Oboler hosting from 1942 to 1943. It was a transcribed syndication of original broadcasts from the Lights Out series. Several episodes of Oboler's shows, including The Devil and Mr. O, were repackaged for syndication and aired from 1970 - 73. The radio program showcased Oboler's talents in creating suspenseful and horrifying narratives that demanded the audience's full attention. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-falcon.html b/site/partial/series/the-falcon.html index b701527..4495011 100644 --- a/site/partial/series/the-falcon.html +++ b/site/partial/series/the-falcon.html @@ -882,9 +882,12 @@

The Falcon is a hard-boiled spy drama that follows the adventures of Michael Waring, an American agent with the codename "Falcon." Known for its mix of danger, romance, and comedy, each episode typically begins with a call from a beautiful woman seeking the Falcon's assistance. Waring, always ready to solve a mystery, speaks with a slightly British accent, engaging in witty banter with the woman before the episode's adventure begins. The Falcon often encounters incompetent police officers, who are incapable of solving the mysteries without Waring's clever assistance.

Originally premiering on the American Blue Network in April 1943, The Falcon aired for ten years on various networks, including NBC and Mutual, with its final broadcast on November 27, 1954. The show was sponsored by various advertisers, such as Gem Razors and Blades, Anahist, Kraft Foods, and General Mills. Approximately 88 episodes from the show's run are available today. The Falcon featured several actors in the leading role, including Berry Kroeger, James Meighan, Les Tremayne, George Petrie, and Les Damon. The show was initially based on a theatrical serial produced by RKO Radio Pictures in the 1940s, and it eventually transitioned to television in a syndicated series produced for NBC Films around ten years later. -

Sources: +

+

Performers: Berry Kroeger, James Meighan, Les Tremayne, George Petrie, Les Damon, Joan Banks, Elspeth Eric, Joan Alexander, Mandel Kramer, Ken Lynch

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-fbi-in-peace-and-war.html b/site/partial/series/the-fbi-in-peace-and-war.html index 91ee14c..678f7ce 100644 --- a/site/partial/series/the-fbi-in-peace-and-war.html +++ b/site/partial/series/the-fbi-in-peace-and-war.html @@ -225,9 +225,12 @@

The FBI in Peace and War was a radio crime drama inspired by Frederick Lewis Collins' book of the same name. The show revolved around the stories of the Federal Bureau of Investigation (FBI) and their various cases, focusing particularly on lesser crimes such as robbery, graft, and interstate car theft. Unlike other detective and cop shows of its time, the narrative was told mostly from the point of view of the criminals, giving the show a unique "Howdyduit" approach to crime storytelling. The series starred, among others, Martin Blaine, Donald Briggs, and Alice Frost, and featured the March from Prokofiev's The Love for Three Oranges as its theme music.

The FBI in Peace and War aired on CBS for nearly 14 years, from November 25, 1944, to September 28, 1958. The show was produced and directed by Max Marcin and Betty Mandeville and had a variety of sponsors, including Lava Soap, Wildroot Cream-Oil, Lucky Strike, Nescafe, and Wrigley's. In 1955, the show was the eighth most popular on radio, according to Nielsen ratings. Despite being based on actual FBI cases, the show did not have the endorsement or participation of the FBI itself, and even included disclaimers at the end of each episode to that effect. -

Sources: +

+

Performers: Martin Blaine, Donald Briggs, Andre Baruch, Hugh Holder, Dick Noel, Len Sterling, Warren Sweeney, Lisa Loughlin

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-fred-allen-show.html b/site/partial/series/the-fred-allen-show.html index 3a5a6bf..95e799e 100644 --- a/site/partial/series/the-fred-allen-show.html +++ b/site/partial/series/the-fred-allen-show.html @@ -540,9 +540,12 @@

The Fred Allen Show was a long-running American radio comedy program that featured comedian Fred Allen and his wife Portland Hoffa. The show's premise revolved around humorous and satirical skits, often focused on current events and the world of entertainment. With a variety of segments, including its most popular "Allen's Alley," listeners were entertained as Allen explored an imaginary neighborhood and interacted with various characters. The show's tone was light and witty, with an emphasis on Allen's clever quips and ad-libs that kept the audience engaged.

The Fred Allen Show aired from October 23, 1932, to June 26, 1949, on CBS and NBC Radio Networks. During its 17-year run, it was sponsored by various companies, including Linit Bath Soaps, Hellmann's, Ipana, Sal Hepatica, Texaco, and Tenderleaf Tea. The show's most popular period was during its sponsorship by The Texas Company, when it was known as Texaco Star Theatre with Fred Allen. The show featured notable guest stars such as Frank Sinatra, Orson Welles, Roy Rogers, Bela Lugosi, Ed Gardner, Norman Corwin, and Edgar Bergen & Charlie McCarthy. Additionally, the show engaged in a memorable on-air "feud" with fellow radio comedian Jack Benny, further adding to its popularity and entertainment value. -

Sources: +

+

Performers: Fred Allen, Portland Hoffa, Minerva Pious, Parker Fennelly, Jack Smart, Alan Reed, John Brown, Charlie Cantor, Ken Roberts, Edmund Ruffner, Harry Von Zell, Arthur Godfrey, Jimmy Wallington, Kenny Delmar

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-grantland-rice-story.html b/site/partial/series/the-grantland-rice-story.html index 895e168..aa596b2 100644 --- a/site/partial/series/the-grantland-rice-story.html +++ b/site/partial/series/the-grantland-rice-story.html @@ -486,9 +486,12 @@

The Grantland Rice Story is a serialized radio program based on Rice's popular autobiography "The Tumult and The Shouting." The 15-minute series comprises 52 sequential installments that closely follow the text of the book, narrated by sportswriter Jimmy Powers. Powers reads and comments on Rice's story in the first person, as Rice intended, and the material is augmented by contemporary asides and updates from Powers. The program provides a comprehensive insight into the career and experiences of one of the most important sportswriters in American history, during an era where the pen and typewriter was still a vital part of the news media.

First airing regionally as early as August 1955, the series received national attention on various stations and aired at varying times. Some stations broadcast it every weekday, others three days a week or weekly, making tracking the broadcasts particularly difficult given the 15-minute format. At least one contiguous run of the entire 52-installment series aired between September 1955 and September 1956, often appearing in many markets at the 15-minute mark, 'buried' behind an on-the-hour broadcast of another program. -

Sources: +

+

Performers: Jimmy Powers

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-great-gildersleeve.html b/site/partial/series/the-great-gildersleeve.html index 1066633..ec84822 100644 --- a/site/partial/series/the-great-gildersleeve.html +++ b/site/partial/series/the-great-gildersleeve.html @@ -4698,9 +4698,12 @@

The Great Gildersleeve is a radio situation comedy that features the character Throckmorton P. Gildersleeve, a regular from the radio show Fibber McGee and Molly. The show focuses on Gildersleeve's life as he moves from Wistful Vista to Summerfield to oversee his late brother-in-law's estate and take care of his orphaned niece and nephew, Marjorie and Leroy Forrester. As a confirmed bachelor and the town's water commissioner, Gildersleeve navigates the singles scene, interacting with a colorful cast of friends and neighbors, including the Jolly Boys Club, Judge Hooker, pharmacist Richard Q. Peavey, and barber Floyd Munson.

The Great Gildersleeve aired from August 31, 1941, to March 21, 1957, with a total of 552 episodes. The show was initially broadcast on NBC and was one of the earliest spin-off programs in radio history. The series was created by Leonard Lewis Levinson and starred Harold Peary, who played Gildersleeve in four feature films released during the show's peak popularity. The show's main sponsor was Kraft Foods, promoting its Parkay margarine. As the show progressed, several characters evolved and developed, with Marjorie marrying college football star Walter "Bronco" Thompson, played by Richard Crenna. Despite its initial popularity, the show experienced a decline in the 1950s, with several long-time characters disappearing and new ones taking their place. The show eventually ended in 1958 after briefly changing formats to 15-minute daily episodes. -

Sources: +

+

Performers: Harold Peary, Willard Waterman, Walter Tetley, Lurene Tuttle, Louise Erickson, Mary Lee Robb, Lillian Randolph, Richard Crenna, Barbara Whiting, Earle Ross, Richard LeGrand, Arthur Q. Bryan, Shirley Mitchell, Bea Benaderet, Una Merkel, Martha Scott, Cathy Lewis, Gale Gordon, Mel Blanc, Conrad Binyon, Mary Costa

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-green-hornet.html b/site/partial/series/the-green-hornet.html index 6d86f77..351bf1d 100644 --- a/site/partial/series/the-green-hornet.html +++ b/site/partial/series/the-green-hornet.html @@ -621,9 +621,11 @@

The Green Hornet is a radio adventure series that follows the dual life of Britt Reid, a sophisticated newspaper publisher by day who becomes a masked vigilante at night. Alongside his trusty valet, Kato, Reid faces crime head-on, often resorting to dubious means to gain information from criminals and racketeers. The series is distinguished by its use of classical music for themes and scene transitions, and is considered one of radio's best-known juvenile adventure programs. The premise of the show was to demonstrate that one person could challenge the corruption within the political system by becoming an outlaw and taking matters into their own hands.

The show originally aired in the United States from January 31, 1936, to December 5, 1952. The Green Hornet was first broadcast on WXYZ, a local Detroit station, before being supplied to national networks such as the Mutual Broadcasting System and the Blue Network (later known as the ABC Network). A total of 885 episodes were aired, and General Mills and Orange Crush were the show's main sponsors. The creators of The Green Hornet, Fran Striker and George W. Trendle, initially conceived of the show as a companion to their already-existing series, The Lone Ranger. As a result, the two series share a blood relationship, with The Green Hornet's protagonist being the grandnephew of The Lone Ranger. -

Sources: +

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-harold-peary-show.html b/site/partial/series/the-harold-peary-show.html index fdcb90f..495ff30 100644 --- a/site/partial/series/the-harold-peary-show.html +++ b/site/partial/series/the-harold-peary-show.html @@ -351,9 +351,12 @@

The Harold Peary Show is an American radio situation comedy program, which followed the life of an older, unmarried man named Honest Harold Hemp. He lived with his mother and nephew, while hosting a radio homemakers program on the fictional radio station. The show was characterized by Peary's unique voice and witty humor, which garnered a following among its listeners. However, it often faced criticism for its similarity to Peary's previous show, The Great Gildersleeve, which makes it difficult for the show to escape its predecessor's shadow.

The Harold Peary Show aired from September 17, 1950, to June 13, 1951, on CBS. It was created and performed by Harold Peary, who also starred in The Great Gildersleeve. The show's regular cast included Peary's wife, Gloria Holiday, Joseph Kearns, Mary Jane Croft, and Parley Baer, with Bob Lamond as the announcer. Despite its talented cast, the show struggled with ratings and negative reviews, leading to its eventual cancellation after just one season. Some of the last episodes were sponsored by the US Armed Forces, but the majority of the series went without a sponsor. The show's director, Norm MacDonnell, later went on to create renowned old-time radio shows like Gunsmoke and Fort Laramie. -

Sources: +

+

Performers: Harold Peary, Gloria Holiday, Joseph Kearns, Mary Jane Croft, Parley Baer

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-haunting-hour.html b/site/partial/series/the-haunting-hour.html index 92311b1..ea0fc98 100644 --- a/site/partial/series/the-haunting-hour.html +++ b/site/partial/series/the-haunting-hour.html @@ -342,9 +342,11 @@

The Haunting Hour is a mystery-horror anthology show that focuses on psychological mysteries, "whodunit" thrillers, and crime crusades. Featuring a talented cast of network stars, the show is known for its classic chills and high melodrama. With a legendary and eerie organ soundtrack that sets the haunting atmosphere, The Haunting Hour captivates listeners with the suspense and terror of the stories. The show stands out in the wide variety of programming that emerged in the commercial Golden Age of Radio.

Broadcast on NBC between 1944 and 1946, The Haunting Hour aired for a total of 52 episodes. The show was produced by NBC's Radio Recording Division, which developed recorded programs for local affiliates. Many talented Radio Row players, such as veteran Suspense announcer Berry Kroeger, Bret Morrison, and organist Rosa Rio, were hired to bring the horror and suspense stories to life. Although the show did not have a big-budget sponsor, it achieved significant success and garnered a large following, with 99 stations carrying the program in 1947. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-health-and-happiness-show.html b/site/partial/series/the-health-and-happiness-show.html index 456e95c..96c2b19 100644 --- a/site/partial/series/the-health-and-happiness-show.html +++ b/site/partial/series/the-health-and-happiness-show.html @@ -90,9 +90,12 @@

The Health and Happiness Show is a radio program featuring the legendary country musician Hank Williams. The show revolves around Williams' soulful songwriting and heartfelt performances, which remain timeless and relevant even after 70 years. Consisting of eight episodes, listeners experience Williams' powerful and piercing voice through a mix of his early hits such as "Lovesick Blues" and "Mind Your Own Business." Although the audio quality of the recordings is as good as his studio-produced releases, the program follows a formulaic structure, with each 15-minute episode including an opening song, duets with his first wife Audrey, and some fiddle numbers from the Drifting Cowboys band member Jerry Rivers.

The Health and Happiness Show was recorded in October 1949 at WSM in Nashville, and it turns 70 years old in October 2019. Interestingly, the show was sponsored by Hadacol, a purported cure-all elixir created by Louisiana state senator Dudley LeBlanc that claimed to remedy a wide range of ailments. The product was heavily promoted using various tactics, such as humorous newspaper ads and a song titled "Hadacol Bounce" by New Orleans' Professor Longhair. Despite its dated format and the less-than-stellar singing by Audrey Williams, the radio show preserved the essence of Hank Williams' exceptional talent and serves as a valuable piece of music history. -

Sources: +

+

Performers: Hank Williams, Audrey Williams

+

Sources: offbeat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-hermits-cave.html b/site/partial/series/the-hermits-cave.html index 97529c5..df946cf 100644 --- a/site/partial/series/the-hermits-cave.html +++ b/site/partial/series/the-hermits-cave.html @@ -207,9 +207,12 @@

The Hermit's Cave was a syndicated horror radio series that featured chilling tales of ghosts, murders, and other eerie occurrences. The show was narrated by a mysterious character, the Hermit, who would invite listeners to turn out their lights and immerse themselves in the terrifying stories he had to share. The Hermit's Cave was known for its suspenseful storytelling, atmospheric sound effects, and skilled voice acting, which contributed to the show's overall spooky and unsettling ambiance.

The program originally aired from September 1937 until the mid-1940s on radio stations like WJR AM in Detroit, Michigan, and later branched out to other cities like Chicago, Illinois, and Los Angeles, California. Over 800 episodes were produced, but fewer than 40 are currently known to exist today. Several actors provided the voice of the Hermit over the years, including John Kent, Charles Penman, Toby Grimmer, Klock Ryder, Mel Johnson, and John Dehner. The show featured sponsors such as the Carter Coal Company and the Simoniz Company, which advertised their respective products during the broadcasts. The Hermit's Cave made a brief return to WJR in January 1950, and its influence continues to resonate in the world of horror and suspense entertainment. -

Sources: +

+

Performers: John Kent, Mel Johnson, John Dehner, William Conrad

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-hillbilly-boys.html b/site/partial/series/the-hillbilly-boys.html index 7761e2f..a270966 100644 --- a/site/partial/series/the-hillbilly-boys.html +++ b/site/partial/series/the-hillbilly-boys.html @@ -423,9 +423,12 @@

The Hillbilly Boys was a radio show that featured live music and general entertainment hosted by W. Lee O'Daniel. The show was centered around a country and western swing musical theme, often showcasing talented musicians with roots in the "hillbilly" culture. One memorable aspect of the show was O'Daniel's role as an announcer, providing moral lessons and reciting poems he had written. This helped to create a laid-back and light-hearted ambiance, allowing the audience to feel a connection with the musicians and other performers. The show's popularity most likely relied heavily on O'Daniel's ability to promote the music and talent within the Texas region.

The Hillbilly Boys radio show aired from 1935 until around 1938 and featured Pat O'Daniel and his band, who were sponsored by the O'Daniel Flour Company of Fort Worth, Texas. The musical stylings of the group gained popularity and played a pivotal role in the Texas music scene, particularly due to the inclusion of Kitty "Texas Rose" Williamson, who was the first female singer in western swing music. W. Lee O'Daniel would go on to have a successful political career as Governor of Texas and later a United States Senator, with some attributing his success in part to the popularity of the radio show. -

Sources: +

+

Performers: W. Lee O'Daniel, Bob Wills, Herman Arnspiger, Milton Brown, Leon Huff, Kitty Williamson

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-jack-benny-program.html b/site/partial/series/the-jack-benny-program.html index d131f9f..62fc33d 100644 --- a/site/partial/series/the-jack-benny-program.html +++ b/site/partial/series/the-jack-benny-program.html @@ -5301,9 +5301,12 @@

The Jack Benny Program was a radio show that adapted various names based on its sponsors at the time. The show featured comedy sketches, banter between characters, and musical numbers. It starred Jack Benny, who played the role of a vain, argumentative, miserly character for four decades. The show's format allowed for the characters to interact with the audience and comment on the program itself. Over the years, the program evolved from a variety show to a modern domestic situation comedy form, depicting the fictionalized life of Jack Benny, a radio star.

The show originally aired from May 2, 1932, until June 22, 1958, and had several different sponsors throughout its run. It started as The Canada Dry Program, before moving to CBS and being called The Chevrolet Program. It then became The General Tire Show, followed by The Jello Program, The Grape Nuts Flakes Program, and finally The Lucky Strike Program. The show's cast included notable actors such as Mary Livingstone, Eddie Anderson, Phil Harris, and Dennis Day. A total of 931 episodes aired over the course of its run, and many are still available to enjoy today. -

Sources: +

+

Performers: Jack Benny, Sadye Marks, Ethel Shutta, George Olsen, Don Wilson, James Melton, Frank Parker, Michael Bartlett, Kenny Baker, Dennis Day, Eddie Anderson, Bob Crosby

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-key.html b/site/partial/series/the-key.html index c5b89f0..c2b31eb 100644 --- a/site/partial/series/the-key.html +++ b/site/partial/series/the-key.html @@ -306,9 +306,11 @@

The Key is a mystery and suspense radio show that captivates listeners with its intriguing premise: every door has a key, and behind every unopened door lies a mystery waiting to be unraveled. The show, created by renowned mystery pulp writer and world traveler James Workman, explores various murder mysteries, such as the killing of showgirls, robbers, and even elderly men! Each episode features a unique cast of characters, skillfully portrayed by talented actors who bring the stories to life. With its riveting stories, well-executed acting, and a healthy dose of mayhem, The Key keeps listeners on the edge of their seats, making them curious yet fearful of what lies behind the next door.

While specific air dates and years are not provided, The Key distinguishes itself from the all-star variety show Magic Key with its thrilling, suspenseful content. The series features a noteworthy cast, as well as numerous interesting trivia about the show's behind-the-scenes details, such as its producers, broadcasters, and sponsors. The radio show's popularity may have sparked adaptations into other media formats, such as television or film, or inspired similar mystery-driven programming. As an intriguing and suspenseful series, The Key remains a key player in the golden age of radio entertainment. -

Sources: +

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-life-of-riley.html b/site/partial/series/the-life-of-riley.html index fc6aba1..ee577c1 100644 --- a/site/partial/series/the-life-of-riley.html +++ b/site/partial/series/the-life-of-riley.html @@ -1719,9 +1719,12 @@

The Life of Riley is an American radio situation comedy that revolves around the life of Chester A. Riley, a wing riveter at the fictional Cunningham Aircraft plant in California. Portrayed by William Bendix, Riley is a stubborn and opinionated character, who is certain that his way is the right way. The show focuses on Riley's family and neighbors as they navigate through various comical situations. The series was known for its humor and entertaining value, featuring a supporting cast of characters such as the friendly undertaker, Digby "Digger" O'Dell, who contributed to the show's light-hearted and engaging style.

The show initially aired on the Blue Network from January 16, 1944, to July 8, 1945, and later moved to NBC, where it was broadcast from September 8, 1945, to June 29, 1951. A total of 318 episodes were produced, with several advertisers and sponsors supporting the show, including the American Meat Institute, Procter & Gamble, and Pabst Blue Ribbon beer. The Life of Riley was adapted into a feature film in 1949, as well as a television series in the 1950s and a comic book in 1958. Among the notable individuals involved in the production of the show was creator Irving Brecher, who initially pitched the series to his friend, Groucho Marx, and eventually cast William Bendix as the lead after coming across his earlier work. -

Sources: +

+

Performers: William Bendix, John Brown, Grace Coppin, Paula Winslowe, Peggy Conklin, Sharon Douglas, Barbara Eiler, Shirley Mitchell, Francis "Dink" Trout, Tommy Cook, Bobby Ellis, Scotty Beckett, Hans Conried, Alan Reed, Mel Blanc, Wesley Morgan

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-line-up.html b/site/partial/series/the-line-up.html index 8a0c09f..9c7f789 100644 --- a/site/partial/series/the-line-up.html +++ b/site/partial/series/the-line-up.html @@ -729,9 +729,12 @@

The Line-Up is a hard-boiled police drama radio show that offers a realistic look into the daily lives and activities of policemen. Set in an unnamed city, the series begins with a police line up and revolves around the investigations of various cases, ranging from murders and kidnappings to thefts and obscene phone calls. While the cases are fictional, the show maintains a high level of realism akin to Dragnet, another popular police drama of the time. Each episode offers a mix of suspense, action, and humor as the police officers work relentlessly to solve the cases.

The Line-Up aired from July 6, 1950 to February 20, 1953 on CBS radio network. Bill Johnstone played the role of Lt. Ben Guthrie while Joseph Kearns and later Wally Maher portrayed Sgt. Matt Grebb. The show then transitioned to television, where it was set in San Francisco and aired from 1954 to 1960 with Warner Anderson as Guthrie. A film adaptation was also released in 1958, starring Anderson. The creators of the show often accompanied police on their jobs and sat in on line-ups to get ideas for the series, sometimes incorporating real stories alongside their fictional plots. The Line-Up was initially designed as a summer replacement for The FBI in Peace and War in 1950, but quickly gained its own popularity and time slot. -

Sources: +

+

Performers: Bill Johnstone, Joseph Kearns, Wally Maher, Warner Anderson

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-lives-of-harry-lime.html b/site/partial/series/the-lives-of-harry-lime.html index 04ea4e5..5afc4b9 100644 --- a/site/partial/series/the-lives-of-harry-lime.html +++ b/site/partial/series/the-lives-of-harry-lime.html @@ -486,9 +486,12 @@

The Lives of Harry Lime was a British radio series that followed the misadventures of its title character Harry Lime, a con-artist portrayed by Orson Welles. This character was reprised from the 1949 cult movie, The Third Man, and the radio series was set before the events in the film. Most episodes opened with a haunting theme by Anton Karas, followed by a gunshot, and then an introduction by Welles as Harry Lime. Being the first independently-produced series that the BBC ever broadcasted, it inspired a Pocket Book of short stories based on scripts, some of which were reportedly written by Orson Welles himself.

The show aired from 1951-1952, and although the BBC only acquired sixteen of the series' fifty-two episodes, it gained a following for its unique storylines that followed Lime's adventures around the world. These adventures included continent hopping, skirt chasing, pick pocketing, breaking and entering, and playing patsy. However, Lime had a conscience, and drew the line at blackmail and murder. Several episodes featured plot elements that Welles later expanded upon in the 1955 motion picture Mr. Arkadin. -

Sources: +

+

Performers: Orson Welles

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-lone-ranger.html b/site/partial/series/the-lone-ranger.html index 7fbaa19..1a1c42e 100644 --- a/site/partial/series/the-lone-ranger.html +++ b/site/partial/series/the-lone-ranger.html @@ -20637,9 +20637,12 @@

The Lone Ranger was a western adventure show primarily aimed at children, although it found a strong adult following, as well. The storyline followed the daring and resourceful masked rider of the plains and his faithful Indian companion, Tonto, as they fought for law and order in the early western United States. The Lone Ranger was inspired by Texas Ranger Captain John R. Hughes and the character gained a strong presence in popular American culture. The Lone Ranger's fight for justice began after surviving a massacre alongside Tonto, where they began working together to bring criminals to justice in the Old West.

Having premiered in January 1933 on WXYZ radio station in Detroit, the show later aired on the Mutual Network and the NBC Blue/ABC networks until September 3, 1954. During its run, the Lone Ranger broadcast 2,956 episodes, and repeat broadcasts continued until May 25, 1956. Various actors portrayed the Lone Ranger during this time, including George Seaton, Earle Graser, and Brace Beemer. Tonto was primarily portrayed by John Todd and sometimes Roland Parker. The show's success inspired various books, comic books, movie serials, and a popular television series in 1949, starring Clayton Moore and Jay Silverheels, which lasted until 1957. -

Sources: +

+

Performers: George Seaton, Earle Graser, Brace Beemer, James Jewell, Fred Foy, John Todd, Roland Parker, Jay Michael, Bill Saunders, Paul Hughes, Jane Fae, Rube and Liz Weiss, John Hodiak, Bob Martin, James Lipton, Dick Beals

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-man-called-x.html b/site/partial/series/the-man-called-x.html index aa01fe5..ae6a026 100644 --- a/site/partial/series/the-man-called-x.html +++ b/site/partial/series/the-man-called-x.html @@ -1017,9 +1017,12 @@

The Man Called X is an espionage radio drama that follows the adventures of the suave and sophisticated Ken Thurston, an undercover international troubleshooter for a mysterious American governmental agency. Assisting him is the shady character Pegon Zeldschmidt, played by Leon Belasco. The series, known for its captivating stories featuring danger, intrigue, and romance in exotic settings, was directed by Jack Johnstone, with music credited to Johnny Green. The show's famous tagline was, "Wherever there is mystery, intrigue, romance, in all the strange and mysterious places of the world, there you will find The Man Called X".

The Man Called X first aired from July 10 to August 28, 1944, on CBS, before moving to the Blue Network for roughly six months, from September 9, 1944, to March 3, 1945. It then found its final home at NBC, where it was a summer filler for the Bob Hope Show in 1945 and 1946 before becoming a regular part of the NBC lineup from 1947 until the final radio broadcast on May 20, 1952. The show was sponsored by various companies, most notably Frigidaire and General Motors. The series was later adapted for television in the early 1950s, with Barry Sullivan starring, though it had a short run. -

Sources: +

+

Performers: Herbert Marshall, Leon Belasco

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-marriage.html b/site/partial/series/the-marriage.html index 982a0f8..654bd98 100644 --- a/site/partial/series/the-marriage.html +++ b/site/partial/series/the-marriage.html @@ -234,9 +234,12 @@

The Marriage was a light-hearted radio show that revolved around the lives of Ben Marriott, a New York lawyer, and his wife Liz, a former buyer for a New York department store. The show often focused on Liz's struggles to adjust to her new role as "just a housewife" and the couple's problems with their children. The unique format of the show had Ben, played by Hume Cronyn, and Liz, played by Jessica Tandy, alternating narration week by week, providing different perspectives on the Marriott family's life.

The show aired on the NBC network from October 4, 1953, until March 28, 1954, after being adapted from the Broadway play The Four Poster, in which Cronyn and Tandy had previously appeared. A total of 26 episodes were produced, and later, a television series of the same name was created in 1954, also starring Hume Cronyn and Jessica Tandy. The TV series only lasted for eight episodes, after receiving warm reviews. The scripts for the radio series were primarily written by Ernest Kinoy, and the closing theme was "A Star Is Born" by Robert Farnon. The cast of the radio show also included Denise Alexander as the couple's awkward teenage daughter, Emily. -

Sources: +

+

Performers: Hume Cronyn, Jessica Tandy, Denise Alexander

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-martin-and-lewis-show.html b/site/partial/series/the-martin-and-lewis-show.html index 7f9d2db..b800ab6 100644 --- a/site/partial/series/the-martin-and-lewis-show.html +++ b/site/partial/series/the-martin-and-lewis-show.html @@ -702,9 +702,12 @@

The Martin and Lewis Show was a radio comedy-variety program starring Dean Martin and Jerry Lewis. The show featured an opening song by Martin, along with some verbal slapstick, a guest appearance from a Hollywood star, more antics from Lewis and a closing number by Martin. The program was a mix of comedy and music, showcasing Martin's crooner talents and Lewis's silly humor. The chemistry between the two performers was a key factor in the show's success, as they played off of each other's strengths to create a unique and entertaining listening experience.

The show was originally broadcast on the NBC Radio Network from April 3, 1949, to July 14, 1953. Although it faced some negative reviews and struggled to find sponsors during its early years, it eventually gained sponsorship from Chesterfield cigarettes and Anacin. The program's popularity grew, winning the title of Favorite Radio Comedy Show in Radio-TV Mirror magazine's 1952 poll. In addition to Martin and Lewis, the show featured regular appearances from Ben Alexander, Sheldon Leonard, Florence MacMichael, The Skylarks, and Mary Hatcher. Notable comedy writers Norman Lear and Ed Simmons contributed to the program throughout its run. -

Sources: +

+

Performers: Dean Martin, Jerry Lewis

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-mel-blanc-show.html b/site/partial/series/the-mel-blanc-show.html index 0b8acdf..050fafd 100644 --- a/site/partial/series/the-mel-blanc-show.html +++ b/site/partial/series/the-mel-blanc-show.html @@ -396,9 +396,12 @@

The Mel Blanc Show is a radio situation comedy that features Mel Blanc as the main character playing a hapless fix-it shop owner. In this show, he does not perform any character impersonations or use any of his famous cartoon voices, instead using his natural voice. The comedy revolves around Mel's misadventures with his girlfriend Betty Colby and the interactions with the other wacky characters on the show. These recurring characters include Zookie, a stuttering helper, Mr. Colby, Betty's father, Mr. Cushing, lodge president, Mr. Potchnik, piano teacher, and various others who pop up from time to time, giving ample opportunities for Mel to display his comedic talents.

The Mel Blanc Show aired on the CBS Radio Network from September 3, 1946 to June 24, 1947. A total of 42 episodes are known to exist today. The show was sponsored by Colgate Tooth Powder and featured talented actors such as Mary Jane Croft, Joseph Kearns, Hans Conreid, Alan Reed, Earle Ross, Jim Backus, and Bea Benaderet. Mel Blanc, best known for voicing popular cartoon characters like Bugs Bunny and Daffy Duck, brought his unique talents and versatile voice acting to the show, making it a memorable part of radio history. -

Sources: +

+

Performers: Mel Blanc, Mary Jane Croft, Joseph Kearns, Hans Conreid, Alan Reed, Earle Ross, Jim Backus, Bea Benaderet, The Sportsmen Quartet

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-mysterious-traveler.html b/site/partial/series/the-mysterious-traveler.html index 68e8c5e..0304520 100644 --- a/site/partial/series/the-mysterious-traveler.html +++ b/site/partial/series/the-mysterious-traveler.html @@ -648,9 +648,12 @@

The Mysterious Traveler was a popular radio show that captivated mystery lovers with a blend of fantasy, science fiction, crime dramas, and suspense. The show's enigmatic protagonist, played by Maurice Tarplin, took listeners on thrilling and chilling journeys as he introduced them to worlds filled with intrigue, darkness, and unexpected twists. The program showcased a wide range of stories that kept audiences on the edge of their seats, earning multiple nominations for the esteemed Edgar award for "Best Radio Drama."

Broadcasted on the Mutual Broadcasting System from December 1943 to September 1952, The Mysterious Traveler accumulated a total of nearly 400 episodes, with only around 70 remaining in existence today. The show was created by the notable writing duo Robert Arthur and David Kogan and was sponsored by Adam Hats. The Mysterious Traveler's popularity resulted in an extension of the show into various forms of media, such as a magazine, a comic book, and even TV adaptations. Some of the most famous episodes include "They Who Sleep," "Man the Insects Hated," "The Good Die Young," "Behind the Locked Door," and "Death Comes for Adolph Hitler." Additionally, several other supernatural shows were inspired by The Mysterious Traveler, further solidifying its lasting impact on audiences and the entertainment industry. -

Sources: +

+

Performers: Maurice Tarplin, Jackson Beck, Lon Clark, Roger DeKoven, Elspeth Eric, Wendell Holmes, Bill Johnstone, Joseph Julian, Jan Miner, Santos Ortega, Bryna Raeburn, Frank Readick, Luis van Rooten, Ann Shepherd, Lawson Zerbe, Bill Zuckert

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-new-adventures-of-nero-wolfe.html b/site/partial/series/the-new-adventures-of-nero-wolfe.html index b3687a7..10873ba 100644 --- a/site/partial/series/the-new-adventures-of-nero-wolfe.html +++ b/site/partial/series/the-new-adventures-of-nero-wolfe.html @@ -243,9 +243,12 @@

The New Adventures of Nero Wolfe is a radio drama series where the titular character, Nero Wolfe, serves as an armchair detective. Wolfe, a character created by American mystery writer Rex Stout, is known for his large size and particular quirks, such as his love for gourmet food and strict daily schedule focused on eating and cultivating his collection of orchids. Relying on his assistant, Archie Goodwin, to carry out the legs work, Wolfe solves crimes and mysteries from the comfort of his home without visiting crime scenes. This radio drama series emphasizes the unique and eccentric personalities of the characters, while incorporating engaging plots and verbal exchanges to entertain the audience.

The show was broadcast from October 20, 1950, to April 27, 1951, airing on the NBC network. The New Adventures of Nero Wolfe was based on a series of books that began in 1934 and had seen two previous incarnations on radio: The Adventures of Nero Wolfe (1943-1944) and The Amazing Nero Wolfe (1945-1946). Very few episodes of these earlier series are available today. The 1950-1951 series starred Sidney Greenstreet as Nero Wolfe, with various actors playing the role of Archie Goodwin. It is considered the series that popularized Nero Wolfe on the radio, with several related media formats including a later series created by the Canadian Broadcasting Company in 1982. -

Sources: +

+

Performers: Santos Ortega, Luis van Rooten, Francis X Bushman, Sydney Greenstreet, Lawrence Dobkin, Gerald Mohr, Harry Bartell, Herb Ellis, Lamont Johnson, Wally Maher

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-pacific-story.html b/site/partial/series/the-pacific-story.html index 68ccc51..689fb04 100644 --- a/site/partial/series/the-pacific-story.html +++ b/site/partial/series/the-pacific-story.html @@ -1548,9 +1548,12 @@

The Pacific Story was a radio documentary that introduced American listeners to the rich and complex histories of the countries and cultures around the Pacific Rim. The show's premise was based on the idea that with Europe in ruins due to World War II, the Pacific might emerge as the center of political and social change in the world, making it crucial for people to know more about the region. The series covered a wide range of nations, including Japan, China, Australia, New Zealand, the Philippines, Korea, India, Russia, and Burma, among others. With a focus on everything from politics to weather and culture, The Pacific Story was narrated by Gayne Williams and featured insights from notable authorities on Pacific affairs such as Henry Luce and Pearl S. Buck.

The Pacific Story aired on NBC at 11:30 pm, with its first broadcast on July 11, 1943, and lasted for 184 weeks, ending on January 26, 1947. The series was created by historian and US consultant Owen Lattimore, who grew up in China and was appointed as a US advisor to Chinese leader Chiang Kai-shek by President Franklin D. Roosevelt in 1941. However, Lattimore later faced trial before a Joseph McCarthy senate hearing as a "top Soviet agent." Although the show had two weeks pre-empted from its run, The Pacific Story remains an informative and compelling old-time radio series that provides insight into the complex and evolving dynamics of the Pacific region during World War II. -

Sources: +

+

Performers: Gayne Williams, Henry Luce, Pearl S. Buck

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-phil-harris-alice-faye-show.html b/site/partial/series/the-phil-harris-alice-faye-show.html index 45c0dd6..3c142a4 100644 --- a/site/partial/series/the-phil-harris-alice-faye-show.html +++ b/site/partial/series/the-phil-harris-alice-faye-show.html @@ -2187,9 +2187,12 @@

The Phil Harris-Alice Faye Show is a comedy radio program that focuses on the lives of real-life Hollywood couple Phil Harris, a jive-talking hipster bandleader, and his glamorous movie star wife, Alice Faye. The show portrays the ups and downs of their lives as they raise their daughters—Alice Jr. played by Jeanine Roose and little Phyllis, played by Anne Whitfield—with humor and wit. The show is set around Phil's band and its eccentric members, providing an entertaining mix of music and comedy. It stands out from other radio shows for its sharp and free-wheeling style that foreshadows modern television sitcoms.

The Phil Harris-Alice Faye Show aired on NBC from 1948 to 1954 with a total of 297 episodes broadcast. Actors such as Gale Gordon and Walter Tetley were among the notable members of the show's cast, with Gordon playing Mr. Scott, a Rexall representative, and Tetley in the role of delivery boy Julius Abbruzio. The show was produced and directed by Paul Phillips and featured subtle commercials for Rexall within the program, similar to The Jack Benny Program and Fibber McGee and Molly. Despite its passage of time, John Dunning, in "On the Air, The Encyclopedia of Old Time Radio," commends the show for its delightful impact that remains relevant today. -

Sources: +

+

Performers: Phil Harris, Alice Faye, Elliott Lewis, Jeanine Roose, Anne Whitfield, Walter Tetley, Gale Gordon, Robert North, Bill Forman

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-red-skelton-show.html b/site/partial/series/the-red-skelton-show.html index e562cdc..78959a9 100644 --- a/site/partial/series/the-red-skelton-show.html +++ b/site/partial/series/the-red-skelton-show.html @@ -1116,9 +1116,12 @@

The Red Skelton Show was a popular American television comedy/variety show that featured a mix of comedy sketches, monologues, and musical performances. The program's primary focus was on physical humor and was known for its colorful and creative characters created by Red Skelton, resulting in a unique and engaging viewing experience. Skelton, a master character actor, and mime had a joke book with a reported 180,000 jokes and was renowned for his rapid-fire jokes and gags, in addition to his storytelling skills in longer sketches centered around American life. The Red Skelton Show stood among the most celebrated shows of its time, earning various accolades such as Emmy Awards and a Golden Globe for Best TV Show.

The Red Skelton Show was on the air from 1951 to 1971, beginning and ending its broadcast run on NBC, with the majority of its 672 episodes airing on CBS. Throughout its twenty-year run, the show proved resilient in various aspects, from time slots to format changes, which helped it remain a staple in American entertainment. The show was produced at Desilu Productions and CBS Television City in Hollywood and was telecast in color around 100 times between 1955 and 1960. Skelton's show featured notable guest stars such as John Wayne, Jack Benny, and Phyllis Diller, with musical accompaniment provided by the show's orchestra, led by famous bandleader David Rose, who also created the show's signature tune, "Holiday for Strings". The program's appeal and memorable characters contributed greatly to Red Skelton's career, making the show a beloved piece of television history. -

Sources: +

+

Performers: Red Skelton, Mickey Rooney

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-roy-rogers-show.html b/site/partial/series/the-roy-rogers-show.html index fc562aa..5b5406b 100644 --- a/site/partial/series/the-roy-rogers-show.html +++ b/site/partial/series/the-roy-rogers-show.html @@ -855,9 +855,12 @@

The Roy Rogers Show was a western radio program that focused on the adventures of Roy Rogers, one of the most popular singing-cowboy movie stars of the time. The show seamlessly blended western music, campfire banter, and thrilling adventures in which justice triumphs over evil. Roy Rogers provided much of the show's vocal music, with his band "The Sons of the Pioneers" featuring heavily in the series, as well as his steed Trigger, his wife Dale Evans, and a rotating cast of comical sidekicks. The show's opening theme "It's Round-Up Time on the Double-R-Bar" was later replaced by the famous "Happy Trails" song written by Dale Evans, and Roy would often close the show with the phrase, "Goodbye, good luck, and may the good Lord take a likin' to ya."

The Roy Rogers Show first aired in 1944 on the Mutual Network and continued to be broadcast on both Mutual and NBC over a decade until its conclusion in 1955. The show had multiple sponsors throughout its tenure, including Goodyear Tire and Rubber Company, Miles Laboratories, Quaker Oats, Post Toasties, and Dodge automobiles. The series was one of the first radio programs to be transcribed due to Roy Rogers' busy schedule with personal appearances and film-making. There were also several TV adaptations of the show produced during its run. -

Sources: +

+

Performers: Roy Rogers, Dale Evans, Gabby Hayes, Pat Brady, Forrest Lewis

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-saint.html b/site/partial/series/the-saint.html index 91c39c6..720e559 100644 --- a/site/partial/series/the-saint.html +++ b/site/partial/series/the-saint.html @@ -630,9 +630,12 @@

The Saint is an American detective-adventure radio show centered around a Robin-Hood-type character, Simon Templar, created by author Leslie Charteris. The show follows the thrilling escapades of Simon, who remains one step ahead of both the police and criminals while trying to help people. Referred to as "The Saint" by millions of fans from books, magazines, and movies, Simon Templar's character is known for his swashbuckling, devil-may-care attitude and his impeccable skill at outwitting both the law and the lawless. The program's introduction paints Simon Templar as a sophisticated crime fighter, further setting the show's exciting and mysterious tone.

The Saint originally premiered in 1945 and continued airing until 1951. The show was broadcast on NBC, CBS, and Mutual networks throughout its run with a total of four different iterations. Though an exact number of episodes is unknown, some old time radio reference books list the initial air date as January 6, 1945. Advertisers for the show included Bromo-Seltzer, Campbell Soups, and Ford Motor Company. The Saint featured a number of notable actors, such as Edgar Barrier, Brian Aherne, Vincent Price, Tom Conway, and Barry Sullivan. Aside from the multiple versions aired in the United States, two more versions were broadcast in Ireland in 1940 and the UK in 1995. -

Sources: +

+

Performers: Edgar Barrier, Brian Aherne, Vincent Price, Tom Conway, Barry Sullivan

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-scarlet-pimpernel.html b/site/partial/series/the-scarlet-pimpernel.html index 2d93e1c..33c6122 100644 --- a/site/partial/series/the-scarlet-pimpernel.html +++ b/site/partial/series/the-scarlet-pimpernel.html @@ -468,9 +468,12 @@

The Scarlet Pimpernel is a historical adventure radio drama series based on the novel by Baroness Emmuska Orczy. Set in England and France in 1792 during the French Revolution, the story follows Sir Percy Blakeney, an English aristocrat who secretly works within the French circles of power to save the falsely accused from execution. He adopts a foppish, effete persona to maintain his cover and his true identity is only known to his followers, the League of the Scarlet Pimpernel. The show is known for its fine cast, rousing orchestral scoring, excellent sound effects, and a tightly written script that stays very close to the dialogue of the original novel.

Produced in London, the radio drama first appeared as the summer replacement for The Cavalcade of America in 1952-53. Marius Goring, an actor best known for his role as composer Julian Craster in the movie classic "The Red Shoes," played the role of the Pimpernel. Produced by Harry A. Towers, the series is sure to delight fans of the Scarlet Pimpernel movies, history lovers, and audiobook listeners who want a more dramatic and engaging storytelling experience. -

Sources: +

+

Performers: Marius Goring

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-sealed-book.html b/site/partial/series/the-sealed-book.html index 16cac87..3378a11 100644 --- a/site/partial/series/the-sealed-book.html +++ b/site/partial/series/the-sealed-book.html @@ -252,9 +252,11 @@

The Sealed Book was a radio series that featured mystery and terror tales, known for its melodramatic and thrilling style. The show's premise revolved around a mysterious keeper opening a secret vault containing a sealed book that held all the secrets and mysteries of humankind. Each episode introduced a new tale of murder, madness, or dark deeds, with Philip Clarke as the host. The series included organ solos that occasionally interrupted the chilling narratives, and it ended with fans being encouraged to tune in for the next week's story.

This captivating series aired on the Mutual network from March 18th to September 9th, 1945, where it was broadcast on Sundays from 10:30 pm to 11:00 pm. A total of 26 episodes were produced, beginning with "The Hands of Death" and concluding with "Death Laughs Last." Robert Arthur, Jr. and David Kogan were the scriptwriters and masterminds behind the series, having also created The Mysterious Traveler. They reused many popular stories from their previous creation for The Sealed Book, adding a hint of familiarity for fans of their earlier work. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-shadow.html b/site/partial/series/the-shadow.html index a180720..ec7c409 100644 --- a/site/partial/series/the-shadow.html +++ b/site/partial/series/the-shadow.html @@ -2160,9 +2160,12 @@

The Shadow is a fictional character published by Street & Smith and created by writer Walter B. Gibson. The enigmatic character originally served as a narrator for the radio program Detective Story Hour, intended to boost sales of Street & Smith's Detective Story Magazine. The protagonist was later developed into a distinct literary character in 1931, featuring in several forms of media, including comic books, comic strips, serials, video games, and films. As a crime-fighting vigilante, The Shadow was known for his expert detective skills, mastery of hand-to-hand combat, and ability to become invisible. The character's catchphrase, "Who knows what evil lurks in the hearts of men? The Shadow knows!", spoken by actor Frank Readick, became a recognizable idiom in American culture.

The radio drama, titled The Shadow, aired from 1930 to 1954 and was broadcast on networks such as CBS, Mutual Broadcasting System, and Blue Network. A total of 677 episodes were produced, while only a small portion, around 275, are known to still exist today. Throughout its run, the show was sponsored by companies like Blue Coal, Goodrich Tires, and Grove's Bromo Quinine, and featured episodes with distinguished voice talents such as Orson Welles. -

Sources: +

+

Performers: Orson Welles, Frank Readick

+

Sources: wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-six-shooter.html b/site/partial/series/the-six-shooter.html index 577abb1..3af5f68 100644 --- a/site/partial/series/the-six-shooter.html +++ b/site/partial/series/the-six-shooter.html @@ -369,9 +369,12 @@

The Six Shooter was a western drama radio show featuring James Stewart as Britt Ponset, a frontier drifter known for his skill with a gun. Created by Frank Burt, the show focused on the adventures of Ponset as he wandered through the wild west, often stumbling into other people's troubles and occasionally having to use his gun to resolve them. The show's tone leaned more towards comedy than other western radio shows, with episodes featuring Ponset getting involved in a variety of amusing situations, such as playing Hamlet with a crude road company or becoming involved in a Western version of Cinderella.

Broadcasting for only one season from September 20, 1953, to June 24, 1954, The Six Shooter aired on NBC and had a total of 39 episodes. The radio show was directed by Jack Johnstone and featured music provided by Basil Adlam. Notable actors that participated in the production included Parley Baer, Virginia Gregg, Howard McNear, and William Conrad. In addition to the radio show, a Hollywood Star Playhouse episode titled "The Six Shooter" was broadcast on April 13, 1952, and a TV pilot episode featuring James Stewart was created but never turned into a full series. -

Sources: +

+

Performers: James Stewart, Parley Baer, Virginia Gregg, Harry Bartell, Howard McNear, Jeanette Nolan, Dan O'Herlihy, Alan Reed, Marvin Miller, William Conrad

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-sound-of-war.html b/site/partial/series/the-sound-of-war.html index 50d77a6..7108002 100644 --- a/site/partial/series/the-sound-of-war.html +++ b/site/partial/series/the-sound-of-war.html @@ -180,9 +180,12 @@

The Sound of War is an 18-episode radio show that features a range of sound clips, some rare, from notable figures such as Adolf Hitler, Franklin Roosevelt, Winston Churchill, Benito Mussolini, Neville Chamberlain, General Douglas McArthur, Charles DeGaulle, and Hermann Goering. The series used the tagline, "The Actual Sound Record of World War II. The drama preserved for all time through the medium of radio. An era not to be forgotten." The show places emphasis on the Fall of France period with three unique episodes dedicated to it. Produced by Bud Greenspan and narrated by his brother David Greenspan, the show aimed to preserve the dramatic events of World War II for future generations.

Although it is unclear when The Sound of War was first broadcast, it appears to be from the late 1950s or early 1960s. The series was produced by Westinghouse Broadcasting in 1965 and carried a similar tagline to that of its British counterpart, the 1973-74 television documentary series The World At War. The Sound of War provided a unique perspective on the history of World War II through its collection of sound clips and the actual voices of many key figures. The Greenspan brothers went on to produce many film sports documentaries, predominantly focused on the Olympics, with David Perry also being remembered as "the voice of the Olympics." -

Sources: +

+

Performers: David Greenspan, Bud Greenspan

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-strange-dr-weird.html b/site/partial/series/the-strange-dr-weird.html index d51d34a..f681dc8 100644 --- a/site/partial/series/the-strange-dr-weird.html +++ b/site/partial/series/the-strange-dr-weird.html @@ -279,9 +279,12 @@

The Strange Dr. Weird was a horror and mysterious melodrama radio program featuring Maurice Tarplin as the narrator, who also lent his creepy voice to the more famous series, The Mysterious Traveler. With its spooky organ music and macabre themes, the show focused on supernatural tales, bits of gore, and innuendos of dread, all backed by an eerie atmosphere. Tarplin's performance as the titular character was reminiscent of the fine actor Boris Karloff, and Tarplin's famous introduction and closing lines captured the chilling essence of the show, inviting listeners to come in and explore the frightful stories that awaited inside Dr. Weird's house on the other side of the cemetery.

The Strange Dr. Weird aired on the Mutual radio network from 1944 to 1945, consisting of 29 episodes produced and directed by Jock MacGregor and written by Robert A. Arthur, who also scripted for The Mysterious Traveler. The series was sponsored by Adam Hats and many of the scripts were condensed 15-minute versions of those originally broadcast on The Mysterious Traveler. Maurice Tarplin, known for his killer puns, was inspired from his previous work on The Mysterious Traveler, while Mutual regulars showcased their acting skills in chilling, suspenseful episodes. The series remains an iconic part of the golden age of radio and stands as a testament to the enduring popularity of the horror genre. -

Sources: +

+

Performers: Maurice Tarplin

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-tenth-man.html b/site/partial/series/the-tenth-man.html index 1dc2154..98dd16e 100644 --- a/site/partial/series/the-tenth-man.html +++ b/site/partial/series/the-tenth-man.html @@ -135,9 +135,12 @@

The Tenth Man is a radio show series centered around mental health and the experiences of various individuals suffering from mental illnesses. Produced by the National Mental Health Foundation, the show aims to educate and create awareness of mental health issues throughout the country. Each episode focuses on a specific person dealing with a mental illness, portraying their journey with topics such as depression, loneliness, social phobias, and discrimination against those who have received mental health treatment. The show has an altruistic and educational tone, shedding light on the challenges faced by those with mental health conditions and the need for emotional guidance and support within communities.

Aired on NBC, The Tenth Man consists of thirteen episodes that were broadcast from October 17, 1947, through January 16, 1948. Jackson Beck served as the announcer, while Ralph Bellamy acted as the narrator for this little-known series. One notable episode tells the story of activist Dorothea Dix and her commitment to improving the care of the mentally ill in America and abroad. Born in April 1802, Dix exposed the harrowing conditions of mental asylums at that time, where patients were often beaten, chained, and locked away. The series holds a significant place in history, showcasing the importance of mental health awareness and the need for better psychiatric care and treatment in communities across the country. -

Sources: +

+

Performers: Jackson Beck, Ralph Bellamy

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-unexpected.html b/site/partial/series/the-unexpected.html index 5fc2f78..4ffb648 100644 --- a/site/partial/series/the-unexpected.html +++ b/site/partial/series/the-unexpected.html @@ -360,9 +360,12 @@

The Unexpected is a radio show based on the theme of terror melodrama. With a fifteen-minute format, the show focuses on quickly drawn weird stories, all ending with a twist to deliver a sudden shock to the listener. By maintaining the element of surprise, The Unexpected ensures that the listener is always on their toes. The show features excellent actors to deliver their lines and the overall direction keeps it on the path of being thrilling, similar to other shows such as Suspense, Lights Out, or Quiet Please.

Airing in 1948, The Unexpected featured remarkable actors like Barry Sullivan, Marsha Hunt, Lurene Tuttle, and Virginia Gregg. Virginia Gregg was known for her role as Helen Asher in The Adventures of Richard Diamond. Directed by Frank Danzig, the show remained thrilling and captivating, much like its predecessors. Although specific details regarding broadcast networks, episode count, and related media formats were not provided, it is evident that the show had a distinguished set of actors and a reputable director, making it a noteworthy addition to the radio shows of its time. -

Sources: +

+

Performers: Barry Sullivan, Marsha Hunt, Lurene Tuttle, Virginia Gregg

+

Sources: otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-weird-circle.html b/site/partial/series/the-weird-circle.html index 05c0a86..2a5d6de 100644 --- a/site/partial/series/the-weird-circle.html +++ b/site/partial/series/the-weird-circle.html @@ -720,9 +720,12 @@

The Weird Circle was a 30-minute, syndicated supernatural and fantasy radio drama series characterized by its adaptations of stories from famous authors such as Robert Lewis Stevenson, Victor Hugo, Edgar Alan Poe, and Charles Dickens, with most of the stories originating from the Victorian era or older. The show had a low production budget, which meant that it did not feature well-known voice actors, but it did make use of the acting talent available in New York City. One unique aspect of the show was the absence of music, apart from brief interludes between scenes, which some believe contributes to the show's timeless appeal.

Originally broadcast between 1943 and 1945, The Weird Circle aired on radio networks such as Mutual Broadcasting System, NBC Red Network, and ABC Blue Network. It featured a total of 78 episodes, produced at RCA's New York studios and was licensed by the Mutual Broadcasting System and later, NBC's Red network. Although the series had modest production values and featured little music, the quality of the source material led to its success. Some notable actors involved in the production included Gladys Thornton, Audrey Totter, Chester Stratton, Eleanor Audley, Arnold Moss, Lawson Zerbe, Walter Vaughn, Regis Joyce, and Fred Barron. -

Sources: +

+

Performers: Lawson Zerbe, Gladys Thornton, Walter Vaughn, Arnold Moss

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/the-whistler.html b/site/partial/series/the-whistler.html index e671646..ff8ac18 100644 --- a/site/partial/series/the-whistler.html +++ b/site/partial/series/the-whistler.html @@ -4527,9 +4527,12 @@

The Whistler is a haunting American radio series that follows an unseen narrator who seems to revel in watching murders happen and telling the grim stories that follow. The Whistler, who does not use a surname and evades capture, stays hidden in the criminal underworld, observing evildoers carry out their schemes without them noticing. The show's tone and style center around gritty crime stories and mystery, wherein the killer is often punished by a twist of fate that only The Whistler seems to expect.

The series aired from May 1942 until September 1955 on the west-coast regional CBS Radio Network and later on Armed Forces Radio. Episodes were also broadcast in Chicago, with two short-lived attempts at east-coast broadcasts sponsored by Campbell Soup Company and Household Finance. There were a total of 692 episodes, out of which over 200 no longer exist today. The show was adapted into a film noir series by Columbia Pictures in 1944 and a television series in 1954. Some notable actors who lent their voices to the series include Bill Forman, Marvin Miller, Gale Gordon, Joseph Kearns, and many others. -

Sources: +

+

Performers: Bill Forman, Gale Gordon, Joseph Kearns, Cathy Lewis, Elliott Lewis, Gerald Mohr, Lurene Tuttle, Jack Webb, Marvin Miller, Everett Clarke, Bill Johnstone

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/theater-five.html b/site/partial/series/theater-five.html index dfd3eee..bbf9773 100644 --- a/site/partial/series/theater-five.html +++ b/site/partial/series/theater-five.html @@ -2322,9 +2322,12 @@

Theater Five was an ambitious attempt by ABC to revive radio drama in the early 1960s. The series was named after its time slot, 5:00 PM, and took on an anthology format, with each episode comprising a 20-minute short story. The subject matter ranged across various genres, with a particular emphasis on science fiction and topical issues drawn from daily news stories. Among the personnel involved in the show's production was Fred Foy, best known for his work on The Lone Ranger.

Theater Five aired on the ABC radio network between 1964 and 1965, and featured notable actors such as James Earl Jones, Alan Alda, and Ed Begley in its 1965 run. Other key cast members included George O. Petrie, Brett Morrison, Jackson Beck, Robert Dryden, Elliott Reid, Court Benson, Cliff Carpenter, and Bryna Raeburn. In January 1965, the show was broadcast to subscribing affiliates from 2:30 to 2:54 PM EST and again from 10:29 to 10:54 PM EST, Monday through Friday. -

Sources: +

+

Performers: George O. Petrie, Brett Morrison, Jackson Beck, Robert Dryden, Elliott Reid, Court Benson, Cliff Carpenter, Bryna Raeburn, James Earl Jones, Alan Alda, Ed Begley, Romeo Muller

+

Sources: archive.org, wikipedia.org -

+

+ \ No newline at end of file diff --git a/site/partial/series/theatre-royal.html b/site/partial/series/theatre-royal.html index 383cce8..8ae0b9a 100644 --- a/site/partial/series/theatre-royal.html +++ b/site/partial/series/theatre-royal.html @@ -423,9 +423,12 @@

Theatre Royal is a British anthology series featuring plays based on prominent literature, films, and English theater. The program was produced in two series and had Sir Lawrence Olivier and Sir Ralph Richardson as hosts, narrators, and oftentimes lead actors. The show presented new radio adaptations of famous stories and lesser-known masterpieces by both American and English authors. Theatre Royal attracts audiences with its variety that is typically missing in similar anthology series, and timeless performances by talented actors.

The show was broadcast from 1954 to 1955, and aired on various radio networks like NBC and ABC. The production company, Towers of London, syndicated the show for international audiences in Europe, South Africa, and Australia. Many renowned British stage and screen actors were involved in individual episodes of the Theatre Royal series, such as Sir John Gielgud, Robert Morley, Harry Andrews, Muriel Forbes, Robert Donat, and Daphne Maddox. The music in the series was credited to the well-known British organist and arranger Sidney Torch but was also used in other Harry Alan Towers productions. The show remained in active syndication in the United States well into the 1970s, and many of the copies in circulation today come from those 1970s repeats which had shortened running times to accommodate newscasts and commercials. -

Sources: +

+

Performers: Sir Lawrence Olivier, Sir Ralph Richardson, Sir John Gielgud, Robert Morley, Harry Andrews, Muriel Forbes, Robert Donat, Daphne Maddox

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/this-is-your-fbi.html b/site/partial/series/this-is-your-fbi.html index 15e58b1..5bdb846 100644 --- a/site/partial/series/this-is-your-fbi.html +++ b/site/partial/series/this-is-your-fbi.html @@ -3222,9 +3222,12 @@

This Is Your FBI was a radio crime drama that featured true cases from the Federal Bureau of Investigation (FBI), as seen from an agent's perspective. FBI Chief J. Edgar Hoover endorsed the show, calling it "the finest dramatic program on the air." The series included stories of crackdowns on organized crime, individual lawbreakers, and false accusations. Each episode alternated between the criminals' actions and the agents' accounts of the investigations. The show highlighted the FBI's latest methods and techniques through the dramatization of its closed case files, with narration provided by Frank Lovejoy, Dean Carleton, and William Woodson.

The series was broadcast on ABC from April 6, 1945, to January 30, 1953, airing a total of 409 episodes. Hoover granted producer-director Jerry Devine access to FBI files for the series, and the cast included Stacy Harris, Betty White, William Conrad, Herb Ellis, Michael Ann Barrett, Carleton Young, Georgia Ellis, Jay C. Flippen, and more. Other radio dramas that also focused on crime investigations include Gangbusters, Mr. District Attorney, and The FBI in Peace and War. This Is Your FBI was sponsored by the Equitable Life Assurance Society of the United States throughout its entire run. -

Sources: +

+

Performers: Stacy Harris, William Conrad, Bea Benaderet, Jay C. Flippen, Betty White, Herb Ellis, Michael Ann Barrett, Carleton Young, Georgia Ellis

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/truth-or-consequences.html b/site/partial/series/truth-or-consequences.html index 18e53d6..6c2ced0 100644 --- a/site/partial/series/truth-or-consequences.html +++ b/site/partial/series/truth-or-consequences.html @@ -162,9 +162,12 @@

Truth or Consequences is an American game show that combines quiz elements with wacky and often embarrassing stunts for contestants. The show's premise involves contestants being given two seconds to answer a trivia question correctly, often designed to be unanswerable or simply a bad joke. If the contestant fails to answer correctly or completely, they must face the "consequences" by performing a zany stunt. The show's format and audience reactions made it a hugely popular show during its run and a testament to the sportsmanship of the American people.

Originally a radio show, Truth or Consequences first aired on March 23, 1940, with Ralph Edwards as host, who later also hosted on television from 1950-1954. The show has had various TV hosts throughout the years, including Jack Bailey, Bob Barker, Steve Dunne, Bob Hilton, and Larry Anderson. The television broadcasts ran on three networks, CBS, NBC, and later in syndication. Over the years, the show aired a total of more than 4,400 episodes, with different numbers of episodes produced at different times for different networks. The success and impact of Truth or Consequences led to other notable game shows on radio and television, and it remains a classic example of American entertainment culture. -

Sources: +

+

Performers: Ralph Edwards, Jack Bailey, Bob Barker, Steve Dunne, Bob Hilton, Larry Anderson

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/vic-and-sade.html b/site/partial/series/vic-and-sade.html index 4cde6e6..b2a33a3 100644 --- a/site/partial/series/vic-and-sade.html +++ b/site/partial/series/vic-and-sade.html @@ -2952,9 +2952,12 @@

Vic and Sade was an American radio sitcom created and written by Paul Rhymer. The show revolved around the daily lives of a married couple, Victor Rodney Gook and his wife Sade, along with their adopted son Rush. Labeled as "radio's home folks," the series focused on the characters' interactions and conversations in their mid-western home. Known for its quiet and calm atmosphere, Vic and Sade was a unique offering in comparison to other shows of its time. The program did not have a continuous storyline and had only a few sound effects, giving it a distinct tone and style.

The radio show premiered on June 29, 1932, and aired intermittently until October 26, 1946. Throughout its broadcast history, it was featured on various networks such as NBC, CBS, Blue, and Mutual. During its 14-year run, Vic and Sade became one of the most popular series in its genre, with Time reporting that it had 7 million devoted listeners in 1943. The show was adapted to television twice, once in 1949 on NBC and again in 1957 on WNBQ, Chicago. Procter & Gamble sponsored the 15-minute shows while Fitch Shampoo sponsored the 30-minute episodes. The show starred Art Van Harvey, Bernardine Flynn, and Bill Idelson, and was created by Paul Rhymer, who wrote the episodes for the entire length of the show's run. -

Sources: +

+

Performers: Art Van Harvey, Bernardine Flynn, Bill Idelson, Clarence Hartzell, David Whitehouse

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/vox-pop.html b/site/partial/series/vox-pop.html index 9577605..82bfa72 100644 --- a/site/partial/series/vox-pop.html +++ b/site/partial/series/vox-pop.html @@ -306,9 +306,12 @@

Vox Pop was a popular radio program that featured interviews, quizzes, and human interest stories. Often called Sidewalk Interviews or Voice of the People, the show was established in Houston in 1932 when Parks Johnson and Jerry Belcher used portable microphones to interview people on the street about the presidential election. The format expanded with the duo later moving to New York and the show gaining co-hosts such as Wally Butterworth, Neil O'Malley, and Warren Hull. The conversations between interviewers and participants were often natural and engaging, and the show covered a wide range of topics, asking passersby humorous questions and interviewing people from all walks of life.

The show ran from 1932 to the late 1940s and was broadcast on various radio networks, including the Blue Network, NBC, CBS, and ABC. Over the course of the show, Johnson and his co-hosts visited 41 states and six foreign countries. The show later found its way to other formats, such as the 1938 Milton Bradley game Vox Pop, where players pulled chips from a bag to answer questions. While the original Vox Pop has ended, today there is an unrelated live call-in radio show with the same name on WAMC, Northeast Public Radio. This extensive collection of often rare recordings showcases the charm and spontaneity of the playful interviews that took place across the US and abroad from the 1930s to the 1940s. -

Sources: +

+

Performers: Parks Johnson, Wally Butterworth, Jerry Belcher, Neil O'Malley, Warren Hull

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/we-came-this-way.html b/site/partial/series/we-came-this-way.html index 7dbc84b..a6763da 100644 --- a/site/partial/series/we-came-this-way.html +++ b/site/partial/series/we-came-this-way.html @@ -279,9 +279,12 @@

We Came This Way is an engaging and informative docudrama series that traces the development of American culture, values, legal systems, and ideals from their origins in the earliest framework of modern society. The show explores the events and developments that have shaped democracy from the Middle Ages to the present day. With a focus on the history of the Magna Carta and the legal principles it established, the series highlights the timeliness of the arguments on both sides of each democratic ideal presented. In addition to legal concepts, We Came This Way covers topics such as property conveyance, fair trade and taxation, and marriage principles.

The show was part of the NBC University of the Air, which aired from 1942 to 1948 and has been incorporated into the curricula of various educational institutions in the U.S. and Canada. Produced during World War II in 1944, We Came This Way featured high production standards and included radio and movie stars such as Dana Andrews. The show explores various historical episodes, such as the Magna Carta, Joan of Arc, Valley Forge, King Louis XIV and the French Revolution, Walt Whitman - Poet of Democracy, and the Story of Leo Tolstoy. Although presented in a half-hour format, the writing and issues raised are treated in-depth, making the show appealing to students of history and radio drama fans alike. -

Sources: +

+

Performers: Dana Andrews

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/whitehall-1212.html b/site/partial/series/whitehall-1212.html index fce9653..e28eea4 100644 --- a/site/partial/series/whitehall-1212.html +++ b/site/partial/series/whitehall-1212.html @@ -405,9 +405,12 @@

Whitehall 1212 was a weekly crime drama radio show that showcased authentic stories taken from the files of Scotland Yard's Black Museum. The episodes, described as "the plain unvarnished facts, just as they occurred", followed the perspectives of the police working on the cases, providing a toned-down portrayal of crime. The fictional host, Chief Superintendent John Davison, acted as the curator of the Black Museum and used the artifacts as a basis for each episode. The series was well-researched and featured an entirely British cast to retain an authentic appeal.

The show aired on NBC from November 18, 1951, until September 28, 1952. It ran almost parallel to another show, The Black Museum, produced by Harry Alan Towers, which offered a more dramatic and sensationalized version of the crime stories. While The Black Museum incorporated scenes from the criminal's point of view, Whitehall 1212 focused solely on police perspectives. The show's writer-director, Wyllis Cooper, was known for working on Quiet Please and Lights Out before tackling this fact-based crime series. The cast and production of Whitehall 1212 were based in London, and the series had official support from Scotland Yard. -

Sources: +

+

Performers: London-based actors

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/wild-bill-hickok.html b/site/partial/series/wild-bill-hickok.html index 35a4aab..5936dbf 100644 --- a/site/partial/series/wild-bill-hickok.html +++ b/site/partial/series/wild-bill-hickok.html @@ -2385,9 +2385,12 @@

Wild Bill Hickok was a popular radio show focused on western adventures, aimed at younger audiences. The story revolved around Marshal Wild Bill Hickok, played by Guy Madison, and his sidekick Jingles B. Jones, played by Andy Devine. The show's format included the heroic duo getting into various predicaments, fighting and eventually winning against all odds, before riding off in search of another adventure. The tone and style of the show were similar to other radio western shows of the time, adhering to a simple plot structure and focusing on action and heroism.

The show first aired on April 1, 1951, and continued until December 31, 1954, initially broadcasting on the Mutual Network with sponsorship from Kellogg Cereals. The show then transitioned to television from 1955 to 1958. From the 274 episodes produced, approximately 268 are still believed to be available today. Notable figures involved in the production included announcer Charlie Lyon and director Paul Pierce. Wild Bill Hickok competed with other radio western heroes such as Roy Rogers and the Cisco Kid, who also successfully transitioned from radio to television. The show's commercial jingles and advertisements from Panhandle Jim were also memorable highlights, promoting Kellogg's Corn Pops to the show's passionate fan base. -

Sources: +

+

Performers: Guy Madison, Andy Devine

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/wjsv-complete-broadcast-day.html b/site/partial/series/wjsv-complete-broadcast-day.html index 4faaedd..3c21abe 100644 --- a/site/partial/series/wjsv-complete-broadcast-day.html +++ b/site/partial/series/wjsv-complete-broadcast-day.html @@ -513,9 +513,11 @@

WJSV Complete Broadcast Day was a unique radio event that captured an entire day of broadcasting on September 21, 1939. The show featured a mix of music, comedy, drama, news, and advertisements, providing listeners with an immersive audio experience. The broadcast day began with local programming, including news, talk, and recorded music, and continued with a variety of programs, including soap operas, quiz shows, and live orchestra performances. From President Franklin Roosevelt's address to Congress to a baseball game between the Washington Senators and the Cleveland Indians, WJSV Complete Broadcast Day presented a fascinating look at the radio programming of the time, as well as the events happening both locally and globally.

The WJSV Complete Broadcast Day aired on September 21, 1939, in Washington, D.C., and was preserved by the National Archives. The recording was made using transcription discs, which were cutting-edge technology at the time. The show was broadcast on the CBS Radio Network and included notable personalities of the time, such as Arthur Godfrey and Agnes Moorehead. The broadcast featured a variety of programs and advertisements, providing a unique insight into the radio landscape and popular culture of the era. With a runtime of 19 hours, WJSV Complete Broadcast Day remains an important historical artifact, representing a unique snapshot of radio programming during a pivotal time in American history. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/words-at-war.html b/site/partial/series/words-at-war.html index fcf7bf2..d9387eb 100644 --- a/site/partial/series/words-at-war.html +++ b/site/partial/series/words-at-war.html @@ -819,9 +819,11 @@

Words at War was a 30-minute dramatic anthology series that focused on stories adapted from books written about World War II. The series was done in a docu-drama style, featuring music by Frank Black and direction by Anton M. Leder. Each episode provided stark, sobering realism to stories penned by different authors, tackling hard-to-comprehend subjects such as the taking of innocent civilian lives. The series effectively combined history, literature, and wartime propaganda, offering a glimpse into the beliefs and fears of American authors during World War II. With each author having their own strengths and weaknesses, the quality of the episodes varied, but all maintained a thought-provoking and powerful impact.

Words at War aired on NBC from 1943 to 1945, produced in cooperation with the Council on Books in Wartime. Based on literature created during the war by various authors, the show aimed to be a "living record of this war and things for which we fought." Although speculative at times, the episodes were based on real events or potential future events. The series was supported by Johnson's Wax and initially debuted in the Fibber McGee and Molly time slot. Most of the series is available today, with well-preserved audio quality. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/world-adventurers-club.html b/site/partial/series/world-adventurers-club.html index 6d6bf76..52efc85 100644 --- a/site/partial/series/world-adventurers-club.html +++ b/site/partial/series/world-adventurers-club.html @@ -306,9 +306,12 @@

World Adventurer's Club is a captivating radio show set in a luxurious gentleman's club, reminiscent of those that thrived in the 1890s in Europe and the US. The show has a unique format, with each episode featuring a report from a club member who has just returned from an exciting adventure in a distant, mysterious place. The series creates a rich atmosphere of camaraderie, adventure, and discovery, transporting the listeners to exotic locations and intriguing events without even leaving their seats. As the stories unfold, listeners are immersed in a world of vivid storytelling with a slight colonial undertone, reflecting the historical and political context of the time.

The show was first broadcast in 1932 and aired on radio station KFWB in Los Angeles. It is notable for having all 32 of its 15-minute episodes preserved, thanks to being transcribed by a California company named Transco. Hanley Stafford, known for his roles in the "Baby Snooks" and "Blondie" radio programs, was a featured storyteller in at least six of the episodes. In a testament to its legacy, the format of World Adventurer's Club was later borrowed for another series, The Adventurer's Club, which ran from January 1947 to January 1948 in 30-minute episodes. Today, fans of the show can still lose themselves in the spellbinding tales of adventure, danger, and wonder that unfold at the World Adventurer's Club. -

Sources: +

+

Performers: Hanley Stafford

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/x-minus-one.html b/site/partial/series/x-minus-one.html index f6efe78..12bc62f 100644 --- a/site/partial/series/x-minus-one.html +++ b/site/partial/series/x-minus-one.html @@ -1116,9 +1116,11 @@

X Minus One was a science fiction radio drama series that gained recognition for its high production values and adaptation of stories from leading American authors of the era. The show featured adaptations of stories from popular science fiction magazines, Astounding and Galaxy, and brought to life the works of well-known authors such as Ray Bradbury, Isaac Asimov, and Poul Anderson. The series focused on futuristic adventures, exploring new dimensions in time and space, providing listeners with a glimpse into a million possible years on a thousand potential worlds.

The show aired on NBC from April 24, 1955, until January 9, 1958, totaling 124 episodes with one pilot or audition story. It occupied various time slots throughout its run in the 1950s, preventing it from generating a large following. X Minus One was an extension of a previous show, Dimension X, which aired on NBC from 1950-51. The first 15 scripts used for X Minus One were from Dimension X, but the series soon found its own niche. A revival of the series was attempted in 1973, but it only lasted until 1975. Today, the series has survived in high quality and remains enjoyable for fans of classic science fiction. -

Sources: +

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/you-are-there.html b/site/partial/series/you-are-there.html index 9a1075c..a87d92a 100644 --- a/site/partial/series/you-are-there.html +++ b/site/partial/series/you-are-there.html @@ -612,9 +612,12 @@

You Are There is a unique educational radio series that focuses on bringing history to life by using a modern network newsroom approach to report on great events of the past. Created by Goodman Ace, the program features announcers and wartime correspondents such as Richard C. Hottelet, John Daly, and Don Hollenbeck, who immerse the listener in the unfolding events through realistic dialogue and character interactions. The creative use of sound effects and actors, directed by Robert Lewis Shayon, provides an engaging and thought-provoking experience, allowing listeners to imaginatively participate in major historical events.

The show was originally broadcast from 1947 to 1950, airing a total of 90 episodes under the titles "CBS Is There" and "You Are There." Currently, only 75 of these episodes are known to exist in recorded form. In addition to the radio series, You Are There also transitioned to television in 1953, with Walter Cronkite as the regular host, and aired until 1957. A revival took place from 1971 to 1972, with Cronkite once again serving as the host. Notable guest stars included John Cassavetes, James Dean, Paul Newman, Jeanette Nolan, Kim Stanley, Rod Steiger, Beatrice Straight, and Joanne Woodward. -

Sources: +

+

Performers: Richard C. Hottelet, John Daly, Don Hollenbeck, Canada Lee, Martin Gabel, John Cassavetes, James Dean, Vivi Janiss, Paul Newman, Jeanette Nolan

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/you-bet-your-life.html b/site/partial/series/you-bet-your-life.html index 744a1b4..39c511a 100644 --- a/site/partial/series/you-bet-your-life.html +++ b/site/partial/series/you-bet-your-life.html @@ -1458,9 +1458,12 @@

You Bet Your Life is an American comedy quiz series that has aired on both radio and television. The show's premise revolves around contestants engaging in humorous conversations with the host, with gameplay often taking a backseat to the comedic interplay between the host and the contestants. Each episode typically featured two or three two-person teams, who were usually selected from the studio audience. The series is best known for its original version, which was hosted by Groucho Marx and featured announcer and assistant George Fenneman. Gameplay often involved contestants trying to guess a "secret word" for a chance to win a prize.

The show debuted on ABC Radio in 1947 and later moved to CBS Radio in 1949, eventually making its way to NBC-TV and NBC Radio in 1950. The radio version of You Bet Your Life aired until June 10, 1960, while the television version continued to air for another year. In total, 529 episodes were produced during the show's run. When the series ended, it was the first primetime series to be shown in reruns during the summer months. The series has also been revived three times since its original run, with the most recent version hosted by Jay Leno in 2021. Some notable advertisers and sponsors of the show included Pabst Blue Ribbon beer, Elgin-American, and Vox Pop. Groucho Marx's career in show business was defined by his brash humor and quick wit, making You Bet Your Life a perfect platform for his talents. -

Sources: +

+

Performers: Groucho Marx, Buddy Hackett, Bill Cosby, Jay Leno

+

Sources: wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/you-cant-do-business-with-hitler.html b/site/partial/series/you-cant-do-business-with-hitler.html index 3d570b0..617c7ba 100644 --- a/site/partial/series/you-cant-do-business-with-hitler.html +++ b/site/partial/series/you-cant-do-business-with-hitler.html @@ -126,9 +126,11 @@

You Can't Do Business With Hitler is a radio show series created by the Office of War Information (OWI), based on the experiences of Douglas Miller, a former commercial attaché to the American Embassy in Berlin. The show exposes the Nazi technique of plundering and looting conquered lands through a series of government propaganda plays, providing an insight into Miller's time working in Germany during the 1930s. With scripts written by Elwood Hoffman and direction by Frank Telford, the show unveils narratives of dishonest trade deals and other serious offenses committed by the Nazis, such as mass murder, religious oppression, and educational suppression.

The show was broadcast four times a month and was adapted from the 1941 book of the same title by Douglas Miller. Miller feared that the Nazi economic and social system would infiltrate America, resulting in repression and violence. The radio series illustrated how Nazi Germany created a difficult market for American exports, particularly in Latin America. Some examples included unpaid goods from various countries that were then resold and trade restrictions imposed as early as 1934. -

Sources: +

+

Sources: archive.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/partial/series/yours-truly-johnny-dollar.html b/site/partial/series/yours-truly-johnny-dollar.html index 23ade9a..8a19486 100644 --- a/site/partial/series/yours-truly-johnny-dollar.html +++ b/site/partial/series/yours-truly-johnny-dollar.html @@ -6453,9 +6453,12 @@

Yours Truly, Johnny Dollar is a radio drama series that centers on the adventures of Johnny Dollar, a freelance insurance investigator. With a format that distinguishes it from other shows, it does not feature a partner, assistant, or secretary for the protagonist. Instead, the character closest to a continuing role is Pat McCracken of the Universal Adjustment Bureau, who assigns Johnny many of his cases. Set in Hartford, Connecticut, Johnny's adventures take him all over the world. Often, characters on the show would mention that they had heard about his cases on the radio, adding a unique touch of credibility to the stories. Through the first three actors to play Johnny Dollar, the series was similar to many other radio detective series, featuring a hard-boiled detective navigating various cases.

The show aired for over 12 years, from 1949 through 1962, in which it saw a one-year hiatus in 1954-1955. Broadcast on CBS Radio and revolving through a total of eight actors playing Johnny Dollar, it had 809 episodes, with more than 710 still existing today. The format for Yours Truly, Johnny Dollar changed over time, with the most memorable being the incorporation of the expense account. The show also attracted some of the best writers in Hollywood, including Jack Johnstone, E. Jack Neuman, Robert Ryf, and Les Crutchfield. The guest stars and supporting casts were top-notch, with notable stars such as Vincent Price making an appearance. Yours Truly, Johnny Dollar was the last continuing detective series of the Golden Age of Radio. -

Sources: +

+

Performers: Dick Powell, Charles Russell, Edmond O'Brien, John Lund, Gerald Mohr, Bob Bailey, Bob Readick, Mandel Kramer

+

Sources: archive.org, wikipedia.org, otrcat.com -

+

+ \ No newline at end of file diff --git a/site/style.css b/site/style.css index ebb348b..581892e 100644 --- a/site/style.css +++ b/site/style.css @@ -413,6 +413,10 @@ p { line-height: 150%; } +p strong { + font-weight: 600; +} + .home > * + * { margin-block-start: 1.5rem; }