'+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; })); }); -->

Freeway (1996 film)

Freeway is a 1996 crime film written and directed by Matthew Bright, starring Kiefer Sutherland, Reese Witherspoon and Brooke Shields. The plot of this film resembles the fairy tale Little Red Riding Hood. Despite being a commercial failure and having censorship problems due to graphic language and violent content, it received mostly positive reviews from critics and has developed a cult following.

Plot

Vanessa Lutz (Witherspoon) is a poor, illiterate teenage girl living south of Los Angeles. Her mother, Ramona (Amanda Plummer), is arrested in a prostitution sting and her stepfather, Larry (Michael T. Weiss), is taken into custody on drug and child abuse charges. Social worker Mrs. Sheets (Conchata Ferrell) comes to take Vanessa away, but Vanessa handcuffs her ankle to a bed and runs away. She takes her parents run-down car and plans to go to her grandmother in Stockton. Along the way, Vanessa stops to see her boyfriend and classmate Chopper Wood (Bokeem Woodbine), a local gang member, to tell him about her excursion and he gives her a gun to sell upon arriving at her destination. Minutes after Vanessa leaves, Chopper is killed in a drive-by shooting by rival gang members. A little later, Bob Wolverton (Sutherland), a counselor at a school for boys with emotional trouble, picks her up after her car breaks down and offers to take her as far as Los Angeles where he is headed.

Podcasts:

Freeway

ALBUMS

Freeway

ALBUMS

  • Freeway (1996) Trailer #1 | Movieclips Classic Trailers

    Check out the official Freeway (1996) Trailer starring Reese Witherspoon and Kiefer Sutherland! Let us know what you think in the comments below. ► Watch Freeway on Vudu: https://www.vudu.com/content/movies/details/Freeway/12420?&cmp=MCYT_YouTube_Desc Subscribe to the channel and click the bell icon to stay up to date on all your favorite movies. Starring: Kiefer Sutherland, Reese Witherspoon, Brooke Shields Directed By: Matthew Bright Synopsis: Following the arrest of her mother, Ramona (Amanda Plummer), young Vanessa Lutz (Reese Witherspoon) decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton (Kiefer Sutherland). During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by...

    published: 12 Nov 2021
  • Freeway Court Scene, Jack Bauer Hit By An Ugly Stick

    My favorite scene from the movie Freeway based on Red Riding Hood with Reese Witherspoon and Keifer Sutherland, Jack Bauer's character was a serial killer named Bob Wolverton, here Reese sees Bob and comments on the damage her gun did to him following their last encounter.

    published: 05 Mar 2011
  • FREEWAY (1996) | Official Trailer | HD

    FREEWAY (1996) | Official Trailer | HD WATCH ON AMAZON: https://amzn.to/2OjF8l2 Starring: Kiefer Sutherland, Reese Witherspoon, Wolfgang Bodison, Dan Hedaya, Amanda Plummer, Brittany Murphy & Brooke Shields Attempting to flee her life, teenage juvenile delinquent Vanessa Lutz goes to live with her grandmother. While on her way, she meets Bob Wolverton, a charming yet sadistic serial killer. Trailer: 1:35 Minutes Feature: 102 Minutes Visit our website: http://multicom.tv/ Check out TheArchive for more shoes and movies: https://www.thearchive.tv/ Download TheArchive app on Apple: https://apps.apple.com/us/app/thearchivetv/id1477667318 Download TheArchive app on Roku: https://channelstore.roku.com/details/1c92c316cc56da9202ebe4566b73a417/the-archive Download TheArchive app on Amazon F...

    published: 18 Jan 2019
  • Freeway (1996) [Vinegar Syndrome 4K Ultra HD + Blu-ray Promo Trailer]

    Freeway is available now on 4K Ultra HD & Blu-ray from Vinegar Syndrome! https://vinegarsyndrome.com/products/freeway

    published: 25 Nov 2022
  • FREEWAY (1996) | Official Trailer

    FREEWAY (1996) | Official Trailer WATCH ON AMAZON: https://amzn.to/2OjF8l2 Starring: Kiefer Sutherland, Reese Witherspoon, Wolfgang Bodison, Dan Hedaya, Amanda Plummer, Brittany Murphy & Brooke Shields Attempting to flee her life, teenage juvenile delinquent Vanessa Lutz goes to live with her grandmother. While on her way, she meets Bob Wolverton, a charming yet sadistic serial killer. Trailer: 1:55 Minutes Feature: 102 Minutes Visit our website: http://multicom.tv/ Check out TheArchive for more shoes and movies: https://www.thearchive.tv/ Download TheArchive app on Apple: https://apps.apple.com/us/app/thearchivetv/id1477667318 Download TheArchive app on Roku: https://channelstore.roku.com/details/1c92c316cc56da9202ebe4566b73a417/the-archive Download TheArchive app on Amazon Fire...

    published: 25 Apr 2018
  • Sin Salida (Freeway), 1996. Castellano.

    Comedia negra protagonizada por Reese Witherspoon, en la que interpreta a una adolescente que huye del sórdido hogar familiar, dirigiéndose a casa de su abuela donde espera encontrar la liberación. Durante el camino entabla amistad con un psicólogo infantil que resulta ser un maníaco sexual. Adaptación moderna en clave de thriller del clásico cuento "Caperucita Roja".

    published: 16 May 2016
  • Freeway (1996) - Bob's Dark Secret Discovered

    Scene from the movie Freeway that uses the timeless story line of Little Red Riding Hood but placed in a trailer park and a serial killer. Bob's wife played by Brooke Shield was living in total denial until a search warrant brings out the ugly truth that was too much to handle. Shame what happens to her in the end, but she was dressed stunningly hot for just lounging around the house waiting for the police to stop by. FAIR USE. 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

    published: 18 Mar 2024
  • Movie clip - Freeway - funniest scene

    this made me laugh for 30 min

    published: 06 Oct 2008
  • Freeway (1996) - Ending Scene

    Ending scene to Freeway that culminates into a really twisted version of grandma what big eyes you have scenario. Reese Witherspoon goes all out trailer park trash justice on ole Bob that poorly tries to disguise himself as her grandma. Funny, this was about 2 years before she made Overnight Delivery with Paul Rudd. FAIR USE. 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

    published: 18 Mar 2024
  • How Kiefer Sutherland Ended Up Filming "Freeway" With Reese Witherspoon

    Kiefer Sutherland jokes about how he ended up doing the controversial film, "Freeway," with Reese Witherspoon at the start of her career. BUILD is a live interview series like no other—a chance for fans to sit inches away from some of today’s biggest names in entertainment, tech, fashion and business as they share the stories behind their projects and passions. Every conversation yields insights, inspiration and plenty of surprises as moderators and audience members ask questions. It all happens several times a day live and live-streamed on BUILDseries.com. Follow us: TWITTER: https://www.twitter.com/BUILDseriesNYC FACEBOOK: https://www.facebook.com/BUILDseriesNYC INSTAGRAM: https://www.instagram.com/BUILDseriesNYC #BUILDseries #Interview

    published: 09 May 2019
Freeway (1996) Trailer #1 | Movieclips Classic Trailers
1:35

Freeway (1996) Trailer #1 | Movieclips Classic Trailers

  • Order:
  • Duration: 1:35
  • Uploaded Date: 12 Nov 2021
  • views: 124941
Check out the official Freeway (1996) Trailer starring Reese Witherspoon and Kiefer Sutherland! Let us know what you think in the comments below. ► Watch Freeway on Vudu: https://www.vudu.com/content/movies/details/Freeway/12420?&cmp=MCYT_YouTube_Desc Subscribe to the channel and click the bell icon to stay up to date on all your favorite movies. Starring: Kiefer Sutherland, Reese Witherspoon, Brooke Shields Directed By: Matthew Bright Synopsis: Following the arrest of her mother, Ramona (Amanda Plummer), young Vanessa Lutz (Reese Witherspoon) decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton (Kiefer Sutherland). During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood. Watch More Classic Trailers: ► Dramas: http://bit.ly/2tefVm2 ► Trailers By Year: http://bit.ly/2qTCxHF Fuel Your Movie Obsession: ► Subscribe to CLASSIC TRAILERS: http://bit.ly/2D01HJi ► Watch Movieclips ORIGINALS: http://bit.ly/2D3sipV ► Like us on FACEBOOK: http://bit.ly/2DikvkY ► Follow us on TWITTER: http://bit.ly/2mgkaHb ► Follow us on INSTAGRAM: http://bit.ly/2mg0VNU Subscribe to the Fandango MOVIECLIPS CLASSIC TRAILERS channel to rediscover all your favorite movie trailers and find a classic you may have missed.
https://wn.com/Freeway_(1996)_Trailer_1_|_Movieclips_Classic_Trailers
Freeway Court Scene, Jack Bauer Hit By An Ugly Stick
1:29

Freeway Court Scene, Jack Bauer Hit By An Ugly Stick

  • Order:
  • Duration: 1:29
  • Uploaded Date: 05 Mar 2011
  • views: 322253
My favorite scene from the movie Freeway based on Red Riding Hood with Reese Witherspoon and Keifer Sutherland, Jack Bauer's character was a serial killer named Bob Wolverton, here Reese sees Bob and comments on the damage her gun did to him following their last encounter.
https://wn.com/Freeway_Court_Scene,_Jack_Bauer_Hit_By_An_Ugly_Stick
FREEWAY (1996) | Official Trailer | HD
1:35

FREEWAY (1996) | Official Trailer | HD

  • Order:
  • Duration: 1:35
  • Uploaded Date: 18 Jan 2019
  • views: 131475
FREEWAY (1996) | Official Trailer | HD WATCH ON AMAZON: https://amzn.to/2OjF8l2 Starring: Kiefer Sutherland, Reese Witherspoon, Wolfgang Bodison, Dan Hedaya, Amanda Plummer, Brittany Murphy & Brooke Shields Attempting to flee her life, teenage juvenile delinquent Vanessa Lutz goes to live with her grandmother. While on her way, she meets Bob Wolverton, a charming yet sadistic serial killer. Trailer: 1:35 Minutes Feature: 102 Minutes Visit our website: http://multicom.tv/ Check out TheArchive for more shoes and movies: https://www.thearchive.tv/ Download TheArchive app on Apple: https://apps.apple.com/us/app/thearchivetv/id1477667318 Download TheArchive app on Roku: https://channelstore.roku.com/details/1c92c316cc56da9202ebe4566b73a417/the-archive Download TheArchive app on Amazon Fire: https://amzn.to/2Um7Czw
https://wn.com/Freeway_(1996)_|_Official_Trailer_|_Hd
Freeway (1996) [Vinegar Syndrome 4K Ultra HD + Blu-ray Promo Trailer]
1:31

Freeway (1996) [Vinegar Syndrome 4K Ultra HD + Blu-ray Promo Trailer]

  • Order:
  • Duration: 1:31
  • Uploaded Date: 25 Nov 2022
  • views: 22722
Freeway is available now on 4K Ultra HD & Blu-ray from Vinegar Syndrome! https://vinegarsyndrome.com/products/freeway
https://wn.com/Freeway_(1996)_Vinegar_Syndrome_4K_Ultra_Hd_Blu_Ray_Promo_Trailer
FREEWAY (1996) | Official Trailer
1:55

FREEWAY (1996) | Official Trailer

  • Order:
  • Duration: 1:55
  • Uploaded Date: 25 Apr 2018
  • views: 44369
FREEWAY (1996) | Official Trailer WATCH ON AMAZON: https://amzn.to/2OjF8l2 Starring: Kiefer Sutherland, Reese Witherspoon, Wolfgang Bodison, Dan Hedaya, Amanda Plummer, Brittany Murphy & Brooke Shields Attempting to flee her life, teenage juvenile delinquent Vanessa Lutz goes to live with her grandmother. While on her way, she meets Bob Wolverton, a charming yet sadistic serial killer. Trailer: 1:55 Minutes Feature: 102 Minutes Visit our website: http://multicom.tv/ Check out TheArchive for more shoes and movies: https://www.thearchive.tv/ Download TheArchive app on Apple: https://apps.apple.com/us/app/thearchivetv/id1477667318 Download TheArchive app on Roku: https://channelstore.roku.com/details/1c92c316cc56da9202ebe4566b73a417/the-archive Download TheArchive app on Amazon Fire: https://amzn.to/2Um7Czw
https://wn.com/Freeway_(1996)_|_Official_Trailer
Sin Salida (Freeway), 1996. Castellano.
1:37:45

Sin Salida (Freeway), 1996. Castellano.

  • Order:
  • Duration: 1:37:45
  • Uploaded Date: 16 May 2016
  • views: 79568
Comedia negra protagonizada por Reese Witherspoon, en la que interpreta a una adolescente que huye del sórdido hogar familiar, dirigiéndose a casa de su abuela donde espera encontrar la liberación. Durante el camino entabla amistad con un psicólogo infantil que resulta ser un maníaco sexual. Adaptación moderna en clave de thriller del clásico cuento "Caperucita Roja".
https://wn.com/Sin_Salida_(Freeway),_1996._Castellano.
Freeway (1996) - Bob's Dark Secret Discovered
2:49

Freeway (1996) - Bob's Dark Secret Discovered

  • Order:
  • Duration: 2:49
  • Uploaded Date: 18 Mar 2024
  • views: 1283
Scene from the movie Freeway that uses the timeless story line of Little Red Riding Hood but placed in a trailer park and a serial killer. Bob's wife played by Brooke Shield was living in total denial until a search warrant brings out the ugly truth that was too much to handle. Shame what happens to her in the end, but she was dressed stunningly hot for just lounging around the house waiting for the police to stop by. FAIR USE. 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
https://wn.com/Freeway_(1996)_Bob's_Dark_Secret_Discovered
Movie clip - Freeway - funniest scene
0:26

Movie clip - Freeway - funniest scene

  • Order:
  • Duration: 0:26
  • Uploaded Date: 06 Oct 2008
  • views: 65388
this made me laugh for 30 min
https://wn.com/Movie_Clip_Freeway_Funniest_Scene
Freeway (1996) - Ending Scene
3:45

Freeway (1996) - Ending Scene

  • Order:
  • Duration: 3:45
  • Uploaded Date: 18 Mar 2024
  • views: 2649
Ending scene to Freeway that culminates into a really twisted version of grandma what big eyes you have scenario. Reese Witherspoon goes all out trailer park trash justice on ole Bob that poorly tries to disguise himself as her grandma. Funny, this was about 2 years before she made Overnight Delivery with Paul Rudd. FAIR USE. 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
https://wn.com/Freeway_(1996)_Ending_Scene
How Kiefer Sutherland Ended Up Filming "Freeway" With Reese Witherspoon
2:08

How Kiefer Sutherland Ended Up Filming "Freeway" With Reese Witherspoon

  • Order:
  • Duration: 2:08
  • Uploaded Date: 09 May 2019
  • views: 7110
Kiefer Sutherland jokes about how he ended up doing the controversial film, "Freeway," with Reese Witherspoon at the start of her career. BUILD is a live interview series like no other—a chance for fans to sit inches away from some of today’s biggest names in entertainment, tech, fashion and business as they share the stories behind their projects and passions. Every conversation yields insights, inspiration and plenty of surprises as moderators and audience members ask questions. It all happens several times a day live and live-streamed on BUILDseries.com. Follow us: TWITTER: https://www.twitter.com/BUILDseriesNYC FACEBOOK: https://www.facebook.com/BUILDseriesNYC INSTAGRAM: https://www.instagram.com/BUILDseriesNYC #BUILDseries #Interview
https://wn.com/How_Kiefer_Sutherland_Ended_Up_Filming_Freeway_With_Reese_Witherspoon
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 1:54:58

Freeway (1996) Trailer #1 | Movieclips Classic Trailers

Check out the official Freeway (1996) Trailer starring Reese Witherspoon and Kiefer Sutherland! Let us know what you think in the comments below. ► Watch Freeway on Vudu: https://www.vudu.com/content/movies/details/Freeway/12420?&cmp=MCYT_YouTube_Desc Subscribe to the channel and click the bell icon to stay up to date on all your favorite movies. Starring: Kiefer Sutherland, Reese Witherspoon, Brooke Shields Directed By: Matthew Bright Synopsis: Following the arrest of her mother, Ramona (Amanda Plummer), young Vanessa Lutz (Reese Witherspoon) decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton (Kiefer Sutherland). During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood. Watch More Classic Trailers: ► Dramas: http://bit.ly/2tefVm2 ► Trailers By Year: http://bit.ly/2qTCxHF Fuel Your Movie Obsession: ► Subscribe to CLASSIC TRAILERS: http://bit.ly/2D01HJi ► Watch Movieclips ORIGINALS: http://bit.ly/2D3sipV ► Like us on FACEBOOK: http://bit.ly/2DikvkY ► Follow us on TWITTER: http://bit.ly/2mgkaHb ► Follow us on INSTAGRAM: http://bit.ly/2mg0VNU Subscribe to the Fandango MOVIECLIPS CLASSIC TRAILERS channel to rediscover all your favorite movie trailers and find a classic you may have missed.
1:35
Freeway (1996) Trailer #1 | Movieclips Classic Trailers
Check out the official Freeway (1996) Trailer starring Reese Witherspoon and Kiefer Suther...
published: 12 Nov 2021
Play in Full Screen
1:29
Freeway Court Scene, Jack Bauer Hit By An Ugly Stick
My favorite scene from the movie Freeway based on Red Riding Hood with Reese Witherspoon a...
published: 05 Mar 2011
Play in Full Screen
1:35
FREEWAY (1996) | Official Trailer | HD
FREEWAY (1996) | Official Trailer | HD WATCH ON AMAZON: https://amzn.to/2OjF8l2 Starrin...
published: 18 Jan 2019
Play in Full Screen
1:31
Freeway (1996) [Vinegar Syndrome 4K Ultra HD + Blu-ray Promo Trailer]
Freeway is available now on 4K Ultra HD & Blu-ray from Vinegar Syndrome! https://vinegarsy...
published: 25 Nov 2022
Play in Full Screen
1:55
FREEWAY (1996) | Official Trailer
FREEWAY (1996) | Official Trailer WATCH ON AMAZON: https://amzn.to/2OjF8l2 Starring: K...
published: 25 Apr 2018
Play in Full Screen
1:37:45
Sin Salida (Freeway), 1996. Castellano.
Comedia negra protagonizada por Reese Witherspoon, en la que interpreta a una adolescente ...
published: 16 May 2016
Play in Full Screen
2:49
Freeway (1996) - Bob's Dark Secret Discovered
Scene from the movie Freeway that uses the timeless story line of Little Red Riding Hood b...
published: 18 Mar 2024
Play in Full Screen
0:26
Movie clip - Freeway - funniest scene
this made me laugh for 30 min
published: 06 Oct 2008
Play in Full Screen
3:45
Freeway (1996) - Ending Scene
Ending scene to Freeway that culminates into a really twisted version of grandma what big ...
published: 18 Mar 2024
Play in Full Screen
2:08
How Kiefer Sutherland Ended Up Filming "Freeway" With Reese Witherspoon
Kiefer Sutherland jokes about how he ended up doing the controversial film, "Freeway," wit...
published: 09 May 2019
Play in Full Screen

Freeway (1996 film)

Freeway is a 1996 crime film written and directed by Matthew Bright, starring Kiefer Sutherland, Reese Witherspoon and Brooke Shields. The plot of this film resembles the fairy tale Little Red Riding Hood. Despite being a commercial failure and having censorship problems due to graphic language and violent content, it received mostly positive reviews from critics and has developed a cult following.

Plot

Vanessa Lutz (Witherspoon) is a poor, illiterate teenage girl living south of Los Angeles. Her mother, Ramona (Amanda Plummer), is arrested in a prostitution sting and her stepfather, Larry (Michael T. Weiss), is taken into custody on drug and child abuse charges. Social worker Mrs. Sheets (Conchata Ferrell) comes to take Vanessa away, but Vanessa handcuffs her ankle to a bed and runs away. She takes her parents run-down car and plans to go to her grandmother in Stockton. Along the way, Vanessa stops to see her boyfriend and classmate Chopper Wood (Bokeem Woodbine), a local gang member, to tell him about her excursion and he gives her a gun to sell upon arriving at her destination. Minutes after Vanessa leaves, Chopper is killed in a drive-by shooting by rival gang members. A little later, Bob Wolverton (Sutherland), a counselor at a school for boys with emotional trouble, picks her up after her car breaks down and offers to take her as far as Los Angeles where he is headed.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: freeway

Edit

Hit-and-run on 134 Freeway triggers Eagle Rock manhunt, a shooting and 3 arrests

The Los Angeles Times 09 Apr 2025
Three suspects are in custody after a hit-and-run on the 134 Freeway led to a manhunt in Eagle Rock and a shooting that wounded one person, authorities said ... The three-vehicle crash snarled traffic and closed several lanes on the 134 Freeway.
Edit

LA City Council committee backs phased expansion of Convention Center

LA Daily News 09 Apr 2025
One risk is the uncertainty about allowing billboards on the freeways. City officials say freeway billboards could generate up to $60 million a year.
Edit

Altadena man accused of taking teen to forest to commit lewd acts

San Gabriel Valley Tribune 09 Apr 2025
Deputies arrested an Altadena man on suspicion of taking a 15-year-old boy to the forest to molest the teen on Monday, April 7 ... Related Articles ... 2 die in 60 Freeway crash in Chino; baby found alive, buried in debris. .
Edit

Ramona High principal out on leave after DUI arrest in Riverside last month, authorities say

Redlands Daily Facts 09 Apr 2025
The principal of Ramona High in Riverside was arrested last month on suspicion of driving under the influence and placed on administrative leave, authorities said ... 2 die in 60 Freeway crash in Chino; baby found alive, buried in debris. .
Edit

Why hasn't there been development on the 395 in Adelanto? City council addresses problem

Daily Press Victorville 09 Apr 2025
In 1985, the Adelanto City Council entered a contract with Caltrans agreeing to "kill" all economic development along Highway 395 from Interstate 15 to Kramer Junction, while Route 395 transitioned from a freeway to a controlled access highway.
Edit

How one woman is doggedly transforming a trash patch into a fragrant habitat garden

The Los Angeles Times 09 Apr 2025
When graffiti appears on the retaining wall below the freeway, she takes a photo and uploads it to MyLA311 to get it painted over ... neglected land between the freeway's retaining wall and the sidewalk.
Edit

REAL ID: There's less than a month to update your drivers license in Tennessee

Knox News 09 Apr 2025
How to get a REAL ID in Tennessee ... There's less than a month left before the REAL ID deadline ... without a REAL ID? ... Monday-FridayKnox County Clerk Halls Office, Crossroads Center, 7326 Norris Freeway, Knoxville, open 8 a.m.-4 p.m ... Monday-Friday.
Edit

Ducks take aim punching up at the Flames and Kings

Press Telegram 09 Apr 2025
Fallen from the playoff race but now impacting it from below, the Ducks will face the still-flickering Calgary Flames on Wednesday and then visit the Kings on Thursday night for this season’s final Freeway Faceoff ... “He’s a potent forward ... When ... Where ... .
Edit

How to speed up rebuilding in Altadena? Put in a permit czar to clear bureaucratic backlog

San Gabriel Valley Tribune 09 Apr 2025
Even if it were just a few requests, the bureaucracy is formidable ... 7-Jan. 8 firestorm in unincorporated Altadena, that can create a paperwork logjam the size of a month’s worth of traffic on the 210 Freeway. To clear the way, the L.A ... U.S ... The U.S.
Edit

Army veteran Clint Hill remembered as the devoted agent who ran to JFK’s car in Dallas

Stars and Stripes 09 Apr 2025
Secret Service agent Clint Hill had hurled himself atop President John F ... Others, he mentored. All knew his actions well ... “He made us proud.” ... 22, 1963. The motorcade had rounded a corner toward a freeway when Hill heard an explosive crack ... Kennedy ... .
Edit

How L.A. removed 1 million pounds of flammable lithium-ion batteries from its burn zones

The Los Angeles Times 09 Apr 2025
That level of risk lent new urgency to the cleanup of L.A.'s fire debris ... Environmental Protection Agency ... .... The intensity of electric vehicle fires can shut down freeways for hours and sometimes prevent firefighters from rescuing car-crash victims.
Edit

I visited Hooters and saw why the chain is facing bankruptcy

Business Insider 09 Apr 2025
The reporter outside of Hooters ... Alex Bitter/BI. Located about 40 minutes by car outside Washington, DC, this Hooters is near Dulles International Airport as well as several major highways and freeways, including Route 66 ... on a Thursday ... Alex Bitter/BI.
Edit

SGV roundup: Glendora softball hangs on for one-run victory over Bonita

San Gabriel Valley Tribune 09 Apr 2025
A recap of the San Gabriel Valley area’s high school baseball and softball games on Tuesday, April 8. SOFTBALL ... Alyssa Hernandez hits two home runs and drove in five runs to lead the Highlanders, who improved to 15-6 and 6-0 in the Freeway League ... .
Edit

San Bernardino has a new ‘on demand’ crosswalk

Daily Bulletin 08 Apr 2025
A couple readers wrote in to mention they noticed on the connector ramp from the 15 Freeway north to the 91 Freeway west, a new sign posted on the ramp’s left side containing suicide crisis hotline information.
×