- published: 29 Aug 2019
- views: 313234
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Charles Hirsch "Chuck" Barris (born June 3, 1929) is an American game show creator, producer, and host. He is best known for hosting The Gong Show, and creating The Dating Game and The Newlywed Game. He is also a songwriter, who wrote the hit "Palisades Park" for Freddy Cannon and the author of Confessions of a Dangerous Mind, his autobiography, which became a film directed by George Clooney.
Barris was born in Philadelphia, Pennsylvania. He attended Drexel Institute of Technology where he was a columnist for the student newspaper, The Triangle. He graduated in 1953.
Barris got his start in television as a page and later staffer at NBC in New York City, and eventually worked backstage at the TV music show American Bandstand (then filmed in Philadelphia), originally as a standards-and-practices person for ABC. Barris soon became a music industry figure. He produced pop music on records and TV, but his most successful venture was writing "Palisades Park". Recorded by Freddy Cannon, it peaked at No. 3 on the Billboard Hot 100 for two weeks (June 23-30, 1962), the biggest hit of Cannon's career. Barris also wrote or co-wrote some of the music that appeared on his game shows.
Peyton Place is a 1957 American film drama in CinemaScope and color by De Luxe that was produced by Jerry Wald, directed by Mark Robson, and stars Lana Turner and Hope Lange, with supporting roles by Lee Philips, Lloyd Nolan, Diane Varsi, Arthur Kennedy, Russ Tamblyn, and Terry Moore. The film is based on the bestselling 1956 novel of the same name by Grace Metalious.
Peyton Place is an exposé of the residents of a small fictional New England mill town in the years surrounding World War II, where scandal, homicide, suicide, incest, and moral hypocrisy hide behind a tranquil façade.
In April of 1941, in the seemingly idyllic New England town of Peyton Place, drunkard Lucas Cross (Arthur Kennedy) stumbles out of his house as his step-son - fed up with Lucas' alcoholism - leaves town. Lucas's downtrodden wife, Nellie (Betty Field) goes to work as the housekeeper for Constance "Connie" MacKenzie (Lana Turner), a rather prim-acting local dress shop owner. The daughters of the two families, Allison MacKenzie (Diane Varsi) and Selena Cross (Hope Lange) are best friends and are about to graduate high school.
Peyton Place may refer to:
Peyton Place is an American prime-time soap opera which aired on ABC in half-hour episodes from September 15, 1964, to June 2, 1969.
Based upon the 1956 novel of the same name by Grace Metalious, the series was preceded by a 1957 film adaptation. A total of 514 episodes were broadcast, in black-and-white from 1964 to 1966 and in color from 1966 to 1969. At the show's peak, ABC ran three new episodes a week. Produced by 20th Century Fox Television. A number of guest stars appeared in the series for extended periods, among them Dan Duryea, Susan Oliver, Leslie Nielsen, Gena Rowlands, and Lee Grant, who won an Emmy Award for Outstanding Performance by an Actress in a Supporting Role in a Drama for her role of tough-as-nails Stella Chernak. The series served as the springboard for such performers as Mia Farrow, Ryan O'Neal, Barbara Parkins, Chris Connelly, David Canary, Mariette Hartley, and Lana Wood.
With Peyton Place, ABC hoped to bring the success of the English soap opera, Coronation Street, to America. Inspired by that soap opera it was decided that it should be aired in prime time. Producer Paul Monash wanted to launch a revival of Grace Metalious' novel of the same name. He refused to acknowledge it as a soap opera, calling it a 'high-class anthology drama'. An hour-long pilot was shot in 1962. Originally, the Cross family from the novel was included, but when Irna Phillips was contacted to change the pilot, she decided to scrap it. Various disagreements between the makers ensued, and the official pilot was not aired until September 15, 1964.
There is no way to write a description about this movie. So many juicy stories are rolled up into this one work. It's based on a novel and resulted in a soap opera. You just have to watch it for the shocks! Follow my mess on other accounts: Instagram: instagram.com/vintagexpast Twitter: twitter.com/vintagexpost Pinterest: pinterest.com/vintagexpast Tumblr: tumblr.com/vintagexpast
Peyton Place 1957 A peaceful New England town hides secrets and scandals. Director: Mark Robson Writers: John Michael Hayes (screenplay), Grace Metalious (from the novel by) Stars: Lana Turner, Lee Philips, Lloyd Nolan
The drama, intrigue, trials & tribulations taking place in the small New England town of Peyton Place are set in motion in the pilot episode. Original air date: September 15, 1964 on ABC.
TV Movie, which originally aired on NBC on May 13, 1985. The plot picks up 20 years after the original series. Original series stars Barbara Parkins (Betty), Dorothy Malone (Connie), Tim O'Connor (Elliot), James Douglas (Steven), Christopher Connelly (Norman), Patricia Morrow (Rita), Evelyn Scott (Ada), Ed Nelson (Mike) and Ruth Warrick (Hannah) appear.
Dorothy Malone, Ed Nelson, Tim O'Connor, Christopher Connelly and Joyce Jillson from the original 1964 TV series Peyton Place return for a made-for-tv special from 1977. Co-starring Janet Margolin, Marj Dusay, David Hedison, Stella Stevens, Jonathan Goldsmith, Charlotte Stewart and Linda Gray. NOTE: I do NOT own the material. As soon as the film is released on official DVD, I will delete it from YouTube. No copyright infringement intended.
Loads more TV Themes at: http://teeveesgreatest.webs.com/ Peyton Place is an American prime-time soap opera which aired on ABC in half-hour episodes from September 15, 1964 to June 2, 1969. The original primetime soap took place in the title town, which was founded by the Peyton family, whose members included the Harringtons. Some of the plots involved Rodney Harrington, the oldest son, choosing between bad girl Betty Anderson or fragile Allison MacKenzie. His brother Norman took up with working class Rita Jacks. Allison's mother Connie was keeping a secret about her daughter's birth. People married and divorced, loved and lost. Murder, illicit passion, insanity, and secrets were the staples of Peyton Place. Based upon the 1956 novel of the same name by Grace Metalious, the series was p...
The granddaddy of primetime soaps, "Peyton Place" was broadcast on the ABC television network from 1964-1969 for a total of 514 episodes. Here are the first season opening and closing credits plus a couple of brief scenes with a VERY young Mia Farrow, Ryan O'Neal and Barbara Parkins. The show is finally being released on DVD for all to enjoy.
A walk down memory lane remembering the actresses from Peyton Place the TV series which ran from 1964-1969
Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. Trailer for the sequel to the 1957 box-office hit and Oscar-nominated film, this flick, while lacking the original cast members (the only people who returned to work on this production were producer Jerry Wald and composer Franz Waxman), this is not an entirely bad film. There are, however, inconsistencies with the writing, and several characters from the original movie (and the novels on which they were based by Grace Metalious) are omitt...
Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use. I noticed the trailer for this film is no longer on youtube, so I thought I'd upload it again. Based on Grace Metalious's bestseller, Lana Turner received not only an Oscar nomination but also a career rejuvenation when she played the role of Constance MacKenzie, the mother of a teenage girl who carries a secret. Diane Varsi, in her film debut, is Alison, who dreams of becoming a writer, and is unaware of the circumstances surrounding her b...
There is no way to write a description about this movie. So many juicy stories are rolled up into this one work. It's based on a novel and resulted in a soap opera. You just have to watch it for the shocks! Follow my mess on other accounts: Instagram: instagram.com/vintagexpast Twitter: twitter.com/vintagexpost Pinterest: pinterest.com/vintagexpast Tumblr: tumblr.com/vintagexpast
Loads more TV Themes at: http://teeveesgreatest.webs.com/ Peyton Place is an American prime-time soap opera which aired on ABC in half-hour episodes from September 15, 1964 to June 2, 1969. The original primetime soap took place in the title town, which was founded by the Peyton family, whose members included the Harringtons. Some of the plots involved Rodney Harrington, the oldest son, choosing between bad girl Betty Anderson or fragile Allison MacKenzie. His brother Norman took up with working class Rita Jacks. Allison's mother Connie was keeping a secret about her daughter's birth. People married and divorced, loved and lost. Murder, illicit passion, insanity, and secrets were the staples of Peyton Place. Based upon the 1956 novel of the same name by Grace Metalious, the series was p...
The granddaddy of primetime soaps, "Peyton Place" was broadcast on the ABC television network from 1964-1969 for a total of 514 episodes. Here are the first season opening and closing credits plus a couple of brief scenes with a VERY young Mia Farrow, Ryan O'Neal and Barbara Parkins. The show is finally being released on DVD for all to enjoy.
Original air date: October 22, 1964 on ABC. George, Julie and Leslie gather at the hospital following the news of Rod & Betty's auto accident....Rod tells Leslie that Betty is pregnant.....
Peyton Manning previews his upcoming ESPN+ series “Peyton’s Places” and explores the places and ideas that made the NFL the success it is today. Manning also tells Chris Mortensen about his time spent with Packers icon Brett Favre in Green Bay, throwing footballs off a New York City skyscraper with Hall of Fame receiver Cris Carter and playing sandlot football in Memphis dressed as Elvis Presley. Sign up today: https://plus.espn.com/ ✔ Subscribe to ESPN+ https://plus.espn.com/ ✔ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔ Subscribe to ESPN FC on YouTube: http://bit.ly/SUBSCRIBEtoESPNFC ✔ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV Excl...
Peyton Manning sheds light on the time he spent with NFL legends, including Fred Biletnikoff, Deion Sanders, Joe Montana, Brett Favre and Joe Namath, while filming his upcoming ESPN+ series “Peyton’s Places.” Sign up today: https://plus.espn.com/ ✔ Subscribe to ESPN+ https://plus.espn.com/ ✔ Get the ESPN App: http://www.espn.com/espn/apps/espn ✔ Subscribe to ESPN on YouTube: http://es.pn/SUBSCRIBEtoYOUTUBE ✔ Subscribe to ESPN FC on YouTube: http://bit.ly/SUBSCRIBEtoESPNFC ✔ Subscribe to NBA on ESPN on YouTube: http://bit.ly/SUBSCRIBEtoNBAonESPN ✔ Watch ESPN on YouTube TV: http://es.pn/YouTubeTV Exclusive interviews with Rachel Nichols https://urlzs.com/jNURe Stephen A. Smith on ESPN https://urlzs.com/W19Tz ESPN on Social Media: ► Follow on Twitter: http://www.twitter.com/espn ► Like on...
TV Movie, which originally aired on NBC on May 13, 1985. The plot picks up 20 years after the original series. Original series stars Barbara Parkins (Betty), Dorothy Malone (Connie), Tim O'Connor (Elliot), James Douglas (Steven), Christopher Connelly (Norman), Patricia Morrow (Rita), Evelyn Scott (Ada), Ed Nelson (Mike) and Ruth Warrick (Hannah) appear.
Original air date: June 29, 1965 on ABC. Rita tells Allison she wants to finish high school..Doris sides with Kim when Allison wants to discipline the chil. Original air date: June 29, 1965 on ABC. Betty has dinner with Rev. Jerry Bedford..Dr. Morton cautions her daughter.. Original air date: July 13, 1965 on ABC. Rita withholds the truth from Norman... Original air date: July 16, 1965 on ABC. Matt arrives at the hospital to interview Steven about the bus accident..David & Doris argue..
Betty shows up at Rod's garage and tells him of her marital troubles with Steven in this scene from the 1960s show, Peyton Place.
Charles Hirsch "Chuck" Barris (born June 3, 1929) is an American game show creator, producer, and host. He is best known for hosting The Gong Show, and creating The Dating Game and The Newlywed Game. He is also a songwriter, who wrote the hit "Palisades Park" for Freddy Cannon and the author of Confessions of a Dangerous Mind, his autobiography, which became a film directed by George Clooney.
Barris was born in Philadelphia, Pennsylvania. He attended Drexel Institute of Technology where he was a columnist for the student newspaper, The Triangle. He graduated in 1953.
Barris got his start in television as a page and later staffer at NBC in New York City, and eventually worked backstage at the TV music show American Bandstand (then filmed in Philadelphia), originally as a standards-and-practices person for ABC. Barris soon became a music industry figure. He produced pop music on records and TV, but his most successful venture was writing "Palisades Park". Recorded by Freddy Cannon, it peaked at No. 3 on the Billboard Hot 100 for two weeks (June 23-30, 1962), the biggest hit of Cannon's career. Barris also wrote or co-wrote some of the music that appeared on his game shows.
crash here we go you can face it or erase it
i do believe we can take it
and make it a wonderful love
you can taste it embrace it lovely
so sweet to see look after me social with company
just you and me fall to the ground
you should wake up and turn up your favorite song
let it move you
just walk through breakfast and grace
i should unwind its bed time lovely so sweet
to see look after me social with company
just you and me leaves on the ground
then a snow storm my back yard is covered in white
can i hold out its cold out
lost in the shade
youve been waiting for sunshine lovely so sweet