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

Paul Mantee

Paul Mantee (January 9, 1931 – November 7, 2013) was an American film and television actor.

Mantee was born Paul Marianetti in San Francisco, California. A journalism major at San Mateo Junior College, Mantee enlisted in the U.S. Navy for four years during the Korean War that made him decide on acting as a career. His stage name was changed from an Italian sounding name to the name of Humphrey Bogart's character in The Petrified Forest. He made a great number of guest appearances in well-known television shows and starred in a handful of films, including a cult classic, Robinson Crusoe on Mars. A restored version of the film was released in 2007 by The Criterion Collection. Mantee authored two novels, In Search of the Perfect Ravioli (Ballantine Books, 1991) and a semi-autobiographical Bruno of Hollywood (Ballantine Books, 1994).

TV and filmography

Notes

External links

  • Paul Mantee at the Internet Movie Database
  • Paul Mantee at Allmovie
  • Notice of death

  • Podcasts:

    • Paul Mantee ● A Simple Tribute

      Paul Mantee (9 January 1931 - 7 November 2013) Rest in Peace ● Pay Your Tribute ● Share Your Thoughts Twitter: https://twitter.com/RIP3ooo Facebook: https://facebook.com/RIP3ooo Google+: https://plus.google.com/+RIP3ooo

      published: 11 Nov 2013
    • ROBINSON CRUSOE ON MARS A look Back at Paul Mantee & Vic Lunden

      Being big fans of the 1964 movie, Paul Mantee was kind enough to invite me and my best friend to his home in Malibu, Ca in 2009 for coffee and dessert. He went the extra distance by calling up his buddy & co-star Vic Lundin to catch up on old times. These sincerely generous men were from a bygone era of cinema where actors were humble yet grateful to see that they made an impact on you and treated you kindly. They signed a ton of stuff, loaded us up with DVD's and pictures and said we'd do it all again sometime. Unfortunately a few years later (2013) - Vic Lundin passed away and a few months after that Paul Mantee followed suit. With every passing day, we are losing actors from this exquisite era of television and film. It's always a pleasure to sit down with your childhood hero's, espec...

      published: 09 Mar 2019
    • Robinson Crusoe on Mars 1964 Trailer HD | Paul Mantee | Adam West

      Robinson Crusoe on Mars 1964 Stranded on Mars with only a monkey as a companion, an astronaut must figure out how to find oxygen, water, and food on the lifeless planet. Director: Byron Haskin Writers: Ib Melchior (screenplay), John C. Higgins (screenplay Stars: Paul Mantee, Victor Lundin, Adam West

      published: 21 Dec 2018
    • "First Strike" (1987; Directed by Allen Kuskowski).

      Originally filmed (well, taped) in 1984, but not released until 1987. From the Homevideo Reviews section of the July 22, 1987 Weekly Variety: FIRST STRIKE With: Stuart Whitman, Paul Mantee, Persis Khambatta, Bart Braverman, Leon Askin, Harvey Vernon, B.G. Fisher, Simmy Bow, Lawrence Guy, Robert Clarke, Duncan McLeod Supplier: Video City Prods.' Combat Video/Tekstar Inc.-Quest Intl. Prods. Producers: Dave Hanson, Bob Nudo Director: Allen Kuskowski Writers: Hanson, Kuskowski $69.95, 94 Min "First Strike" is an oddity, a doomsday submarine thriller shot on videotape rather than film. Several horror programs as well as thousands of porno entries have been made this way for homevideo, but this 1984 production merely demonstrates the unsuitability of the technique for either a feature film or...

      published: 19 Jul 2021
    • Jon Voight vs Ed Bakey, Don Pedro Colley and Paul Mantee

      published: 12 Sep 2011
    • Los del Rio Vs Snoop Dogg - Macarena like it's hot - Paolo Monti mashup 2020

      Want to buy in high quality? https://the-mashup-store.sellfy.store/p/los-del-rio-vs-snoop-dogg-macarena-like-its-hot-paolo-monti-mashup-2020/ In this critical moment, let me bring You some fun ! A hug to all my friend in Italy and in the rest of the world that are suffering for this situation! Take care each others, only together we can survive the virus! Want more mashup? please support me also in 2020! Thumbs UP!

      published: 11 Mar 2020
    • Trailer : Panik in der Sierra Nova (Day of the Animals / There is something out there)

      Panik in der Sierra Nova (1977) Regisseur: William Girdler Cast: Christopher George Leslie Nielsen Lynda Day George Richard Jaeckel Michael Ansara Ruth Roman Jon Cedar Paul Mantee Walter Barnes Andrew Stevens Susan Backlinie Kathleen Bracken Bobby Porter Michelle Stacy Michael Andreas

      published: 21 Feb 2010
    • VEGA$ S3E19 SEEK AND DESTROY

      VEGA$ S03 E19 · Seek and Destroy Original Airdate: April 22, 1981 A Russian who was testing a new fighter plane decides to defect and goes to Las Vegas and lands at the nearby military base. One of the bases intelligence men is contacted by an informant who tells him that the Russians have mobilized a team to take out the pilot and the plane. He learns one of the members of the team is a Las Vegas based private investigator who's an explosive expert. So he calls Dan to help him. Before he can meet Dan the men grab him and his contact and take them away. They are later found killed in a car accident which Dan claims is not true. Dan is later taken to the base who fills in on the Commanding officer what his friend told him and that he wants to help. So Dan tries to find the man his friend w...

      published: 02 Feb 2022
    • Movie Review - Robinson Crusoe On Mars (1964)

      My review of the sci-fi cult-classic from 1964, "Robinson Crusoe On Mars", starring Paul Mantee as a U.S. astronaut stranded on Mars, 51 years before Matt Damon in "The Martian". Also starring Adam West, Victor Lundin, and Barney The Wooley Monkey as Mona The Wooley Monkey. Directed by Byron Haskin. (1964)

      published: 13 Oct 2015
    • Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon)

      Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon on NBC) Listen to "La solassitude" here: https://stromae.lnk.to/la-solassitude Order my new album "Multitude" here: https://stromae.lnk.to/multitudeID -- https://www.stromae.com/fr/ https://www.tiktok.com/@stromae https://www.facebook.com/stromae https://www.instagram.com/stromae https://twitter.com/stromae https://www.youtube.com/channel/UCXF0YCBWewAj3RytJUAivGA?sub_confirmation=1 -- Mosaert Paul Van Haver (Stromae) : creative direction Coralie Barbier : creative direction and fashion design Luc Van Haver : creative direction Gaëlle Birenbaum : communication & project manager Evence Guinet-Dannonay : executive assistant Gaëlle Cools : content & community manager Roxane Hauzeur : textile product manager Diego Mitrugno : offi...

      published: 21 Dec 2021
    developed with YouTube
    Paul Mantee ● A Simple Tribute
    1:35

    Paul Mantee ● A Simple Tribute

    • Order:
    • Duration: 1:35
    • Uploaded Date: 11 Nov 2013
    • views: 1862
    Paul Mantee (9 January 1931 - 7 November 2013) Rest in Peace ● Pay Your Tribute ● Share Your Thoughts Twitter: https://twitter.com/RIP3ooo Facebook: https://facebook.com/RIP3ooo Google+: https://plus.google.com/+RIP3ooo
    https://wn.com/Paul_Mantee_●_A_Simple_Tribute
    ROBINSON CRUSOE ON MARS   A look Back at Paul Mantee & Vic Lunden
    8:13

    ROBINSON CRUSOE ON MARS A look Back at Paul Mantee & Vic Lunden

    • Order:
    • Duration: 8:13
    • Uploaded Date: 09 Mar 2019
    • views: 679
    Being big fans of the 1964 movie, Paul Mantee was kind enough to invite me and my best friend to his home in Malibu, Ca in 2009 for coffee and dessert. He went the extra distance by calling up his buddy & co-star Vic Lundin to catch up on old times. These sincerely generous men were from a bygone era of cinema where actors were humble yet grateful to see that they made an impact on you and treated you kindly. They signed a ton of stuff, loaded us up with DVD's and pictures and said we'd do it all again sometime. Unfortunately a few years later (2013) - Vic Lundin passed away and a few months after that Paul Mantee followed suit. With every passing day, we are losing actors from this exquisite era of television and film. It's always a pleasure to sit down with your childhood hero's, especially when they are so affable. These guys will be missed by many.
    https://wn.com/Robinson_Crusoe_On_Mars_A_Look_Back_At_Paul_Mantee_Vic_Lunden
    Robinson Crusoe on Mars 1964 Trailer HD | Paul Mantee | Adam West
    4:02

    Robinson Crusoe on Mars 1964 Trailer HD | Paul Mantee | Adam West

    • Order:
    • Duration: 4:02
    • Uploaded Date: 21 Dec 2018
    • views: 423
    Robinson Crusoe on Mars 1964 Stranded on Mars with only a monkey as a companion, an astronaut must figure out how to find oxygen, water, and food on the lifeless planet. Director: Byron Haskin Writers: Ib Melchior (screenplay), John C. Higgins (screenplay Stars: Paul Mantee, Victor Lundin, Adam West
    https://wn.com/Robinson_Crusoe_On_Mars_1964_Trailer_Hd_|_Paul_Mantee_|_Adam_West
    "First Strike" (1987; Directed by Allen Kuskowski).
    1:34:11

    "First Strike" (1987; Directed by Allen Kuskowski).

    • Order:
    • Duration: 1:34:11
    • Uploaded Date: 19 Jul 2021
    • views: 32282
    Originally filmed (well, taped) in 1984, but not released until 1987. From the Homevideo Reviews section of the July 22, 1987 Weekly Variety: FIRST STRIKE With: Stuart Whitman, Paul Mantee, Persis Khambatta, Bart Braverman, Leon Askin, Harvey Vernon, B.G. Fisher, Simmy Bow, Lawrence Guy, Robert Clarke, Duncan McLeod Supplier: Video City Prods.' Combat Video/Tekstar Inc.-Quest Intl. Prods. Producers: Dave Hanson, Bob Nudo Director: Allen Kuskowski Writers: Hanson, Kuskowski $69.95, 94 Min "First Strike" is an oddity, a doomsday submarine thriller shot on videotape rather than film. Several horror programs as well as thousands of porno entries have been made this way for homevideo, but this 1984 production merely demonstrates the unsuitability of the technique for either a feature film or standard telefilm. Shot in San Diego and West Germany, "First Strike" deals with a Soviet scheme to start World War III with the U.S. blamed and Soviet missiles getting the jump on their U.S. counterparts. Persis Khambatta portrays the double agent actually working for the Russkies, who the U.S. gets back in a prisoner exchange and proceeds to take over Stuart Whitman's sub, the U.S.S. Cobra, itself on a secret mission in Leningrad harbor. Key plot device is that a CIA man has been selling U.S. sub launch codes to the Russians; these codes will be used to launch a missile from the Cobra with blame falling on America. A Soviet doublecross has Khambatta expendable, with a separate plan to wipe out the bulk of the U.S. fleet and take control of the Middle East for the USSR, with Syria's aid. Pic involves some okay nailbiting scenes, in the paranoia format of a "Voyage To The Bottom Of The Sea" tv episode. Open ending is very disappointing, as both superpowers back down from an ultimate exchange and the Cobra is left hanging as an embarrassment, being blamed in the public consumption cover story for launching missiles against Syria. Very harsh studio lighting, unconvincing backdrops for the "exterior" scenes on the sub's bridge when surfaced and leaving all large-scale action off-screen makes "First Strike" unsatisfactory for its "The Bedford Incident" genre. Filmed stock footage at sea is printed down to be dull and drab, so as not to clash with the videotape original material. Use of tape is particularly unflattering to Khambatta, who also suffers from several awkward line readings. Electronic keyboard music score sounds like a track prepared for a silent film.—Lor.
    https://wn.com/First_Strike_(1987_Directed_By_Allen_Kuskowski).
    Jon Voight vs Ed Bakey, Don Pedro Colley and Paul Mantee
    3:35

    Jon Voight vs Ed Bakey, Don Pedro Colley and Paul Mantee

    • Order:
    • Duration: 3:35
    • Uploaded Date: 12 Sep 2011
    • views: 820
    https://wn.com/Jon_Voight_Vs_Ed_Bakey,_Don_Pedro_Colley_And_Paul_Mantee
    Los del Rio Vs Snoop Dogg - Macarena like it's hot - Paolo Monti mashup 2020
    5:58

    Los del Rio Vs Snoop Dogg - Macarena like it's hot - Paolo Monti mashup 2020

    • Order:
    • Duration: 5:58
    • Uploaded Date: 11 Mar 2020
    • views: 5225950
    Want to buy in high quality? https://the-mashup-store.sellfy.store/p/los-del-rio-vs-snoop-dogg-macarena-like-its-hot-paolo-monti-mashup-2020/ In this critical moment, let me bring You some fun ! A hug to all my friend in Italy and in the rest of the world that are suffering for this situation! Take care each others, only together we can survive the virus! Want more mashup? please support me also in 2020! Thumbs UP!
    https://wn.com/Los_Del_Rio_Vs_Snoop_Dogg_Macarena_Like_It's_Hot_Paolo_Monti_Mashup_2020
    Trailer : Panik in der Sierra Nova (Day of the Animals / There is something out there)
    2:00

    Trailer : Panik in der Sierra Nova (Day of the Animals / There is something out there)

    • Order:
    • Duration: 2:00
    • Uploaded Date: 21 Feb 2010
    • views: 4736
    Panik in der Sierra Nova (1977) Regisseur: William Girdler Cast: Christopher George Leslie Nielsen Lynda Day George Richard Jaeckel Michael Ansara Ruth Roman Jon Cedar Paul Mantee Walter Barnes Andrew Stevens Susan Backlinie Kathleen Bracken Bobby Porter Michelle Stacy Michael Andreas
    https://wn.com/Trailer_Panik_In_Der_Sierra_Nova_(Day_Of_The_Animals_There_Is_Something_Out_There)
    VEGA$ S3E19 SEEK AND DESTROY
    49:20

    VEGA$ S3E19 SEEK AND DESTROY

    • Order:
    • Duration: 49:20
    • Uploaded Date: 02 Feb 2022
    • views: 49409
    VEGA$ S03 E19 · Seek and Destroy Original Airdate: April 22, 1981 A Russian who was testing a new fighter plane decides to defect and goes to Las Vegas and lands at the nearby military base. One of the bases intelligence men is contacted by an informant who tells him that the Russians have mobilized a team to take out the pilot and the plane. He learns one of the members of the team is a Las Vegas based private investigator who's an explosive expert. So he calls Dan to help him. Before he can meet Dan the men grab him and his contact and take them away. They are later found killed in a car accident which Dan claims is not true. Dan is later taken to the base who fills in on the Commanding officer what his friend told him and that he wants to help. So Dan tries to find the man his friend wants him to find. Can he find them before they make their move. Guest Starring: Heather Menzies-Urich (Victoria Ballinger), Paul Mantee (Capt. Jim Schmidt) and Colby Chester (Major Barney Adams) Purchase the Series at Amazon: https://www.amazon.com/Vegas-Complete-Robert-Urich/dp/B06XDDL7YX/ref=pd_lpo_1?pd_rd_i=B06XDDL7YX&psc=1
    https://wn.com/Vega_S3E19_Seek_And_Destroy
    Movie Review - Robinson Crusoe On Mars (1964)
    21:02

    Movie Review - Robinson Crusoe On Mars (1964)

    • Order:
    • Duration: 21:02
    • Uploaded Date: 13 Oct 2015
    • views: 2079
    My review of the sci-fi cult-classic from 1964, "Robinson Crusoe On Mars", starring Paul Mantee as a U.S. astronaut stranded on Mars, 51 years before Matt Damon in "The Martian". Also starring Adam West, Victor Lundin, and Barney The Wooley Monkey as Mona The Wooley Monkey. Directed by Byron Haskin. (1964)
    https://wn.com/Movie_Review_Robinson_Crusoe_On_Mars_(1964)
    Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon)
    3:17

    Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon)

    • Order:
    • Duration: 3:17
    • Uploaded Date: 21 Dec 2021
    • views: 47257754
    Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon on NBC) Listen to "La solassitude" here: https://stromae.lnk.to/la-solassitude Order my new album "Multitude" here: https://stromae.lnk.to/multitudeID -- https://www.stromae.com/fr/ https://www.tiktok.com/@stromae https://www.facebook.com/stromae https://www.instagram.com/stromae https://twitter.com/stromae https://www.youtube.com/channel/UCXF0YCBWewAj3RytJUAivGA?sub_confirmation=1 -- Mosaert Paul Van Haver (Stromae) : creative direction Coralie Barbier : creative direction and fashion design Luc Van Haver : creative direction Gaëlle Birenbaum : communication & project manager Evence Guinet-Dannonay : executive assistant Gaëlle Cools : content & community manager Roxane Hauzeur : textile product manager Diego Mitrugno : office manager Partizan Producer : Auguste Bas Line Producer : Zélie Deletrain Production coordinator : Lou Bardou-Jacquet Production assistant : Hugo Dao Production assistant : Adrien Bossa Production assistant : Basile Jan Director : Julien Soulier 1st assistant director : Mathieu Perez 2nd assistant director : Leila Gentet Director of Photography : Kaname Onoyama 1st assistant operator : Micaela albanese 2nd assistant operator : Florian Rey DoP Mantee : Zhaopeng Zhong Making of : Adryen Barreyat Head Gaffer : Sophie Delorme Electrician : Sacha Brauman Electrician: Tom Devianne Lighting designer : Aurélien Dayot Prelight electrician : Emmanuel Malherbe Head Grip : Dioclès Desrieux Best Boy grip : Eloi Perrin Prelight Grip : Vladimir Duranovic Location manager : Léo Rodriguez Location manager assistant : Grégoire Décatoire Location manager assistant : Mathieu Barazer Stylist : Sandra Gonzalez Stylist assistant : Sarah Bernard Make Up and Hair Artist : Camille Roche Make up Artist : Carla Lange Make Up and Hair Artist : Victoria Pinto Sound Engineer : Lionel Capouillez Backliner : Nicolas Fradet Production Designer : Penelope Hemon Choreographer : Marion Motin Choreographer assistant : Jeanne Michel Post production : Royal Post Post-Production Director : Cindy Durand Paucsik Editor : Marco Novoa Editor assistant : Térence Nury Grader : Vincent Amor VFX Supervisor : Julien Laudicina Graphic designer : Quentin Mesureux Graphic designer : Lucas Ponçon Film Lab Assistant : Hadrian Kalmbach Musicians: Florian Rossi Manoli Avgoustinatos Simon Schoovaerts Yoshi Masuda Dancers: Juliana Casas Lydie Alberto Robinson Cassarino Yohann Hebi daher Chris Fargeot Audrey Hurtis Elodie Hilsum Daya jones Théophile Bensusan Brandon Masele Jean Michel Premier Kevin Bago Achraf Bouzefour Pauline Journe Caroline Bouquet Manon Bouquet Ashley Biscette Jocelyn Laurent Oumrata Konan Kylian Toto Enzo Lesne Salomon Mpondo-Dicka Sandrine Monar Karl-Ruben Noel #Stromae #Sante #JimmyFallon
    https://wn.com/Stromae_Santé_(Live_From_The_Tonight_Show_Starring_Jimmy_Fallon)
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Paul Mantee ● A Simple Tribute
      1:35
      Paul Mantee ● A Simple Tributeremove from playlist
    • ROBINSON CRUSOE ON MARS   A look Back at Paul Mantee & Vic Lunden
      8:13
      ROBINSON CRUSOE ON MARS A look Back at Paul Mantee & Vic Lundenremove from playlist
    • Robinson Crusoe on Mars 1964 Trailer HD | Paul Mantee | Adam West
      4:02
      Robinson Crusoe on Mars 1964 Trailer HD | Paul Mantee | Adam Westremove from playlist
    • 1:34:11
      "First Strike" (1987; Directed by Allen Kuskowski).remove from playlist
    • Los del Rio Vs Snoop Dogg - Macarena like it's hot - Paolo Monti mashup 2020
      5:58
      Los del Rio Vs Snoop Dogg - Macarena like it's hot - Paolo Monti mashup 2020remove from playlist
    • Trailer : Panik in der Sierra Nova (Day of the Animals / There is something out there)
      2:00
      Trailer : Panik in der Sierra Nova (Day of the Animals / There is something out there)remove from playlist
    • VEGA$ S3E19 SEEK AND DESTROY
      49:20
      VEGA$ S3E19 SEEK AND DESTROYremove from playlist
    • Movie Review - Robinson Crusoe On Mars (1964)
      21:02
      Movie Review - Robinson Crusoe On Mars (1964)remove from playlist
    • Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon)
      3:17
      Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon)remove from playlist
    developed with YouTube
    PLAYLIST TIME:

    Paul Mantee ● A Simple Tribute

    Paul Mantee (9 January 1931 - 7 November 2013) Rest in Peace ● Pay Your Tribute ● Share Your Thoughts Twitter: https://twitter.com/RIP3ooo Facebook: https://facebook.com/RIP3ooo Google+: https://plus.google.com/+RIP3ooo
    1:35
    Paul Mantee ● A Simple Tribute
    Paul Mantee (9 January 1931 - 7 November 2013) Rest in Peace ● Pay Your Tribute ● Share Y...
    published: 11 Nov 2013
    Play in Full Screen
    8:13
    ROBINSON CRUSOE ON MARS A look Back at Paul Mantee & Vic Lunden
    Being big fans of the 1964 movie, Paul Mantee was kind enough to invite me and my best fri...
    published: 09 Mar 2019
    Play in Full Screen
    4:02
    Robinson Crusoe on Mars 1964 Trailer HD | Paul Mantee | Adam West
    Robinson Crusoe on Mars 1964 Stranded on Mars with only a monkey as a companion, an astro...
    published: 21 Dec 2018
    Play in Full Screen
    1:34:11
    "First Strike" (1987; Directed by Allen Kuskowski).
    Originally filmed (well, taped) in 1984, but not released until 1987. From the Homevideo ...
    published: 19 Jul 2021
    Play in Full Screen
    3:35
    Jon Voight vs Ed Bakey, Don Pedro Colley and Paul Mantee
    published: 12 Sep 2011
    Play in Full Screen
    5:58
    Los del Rio Vs Snoop Dogg - Macarena like it's hot - Paolo Monti mashup 2020
    Want to buy in high quality? https://the-mashup-store.sellfy.store/p/los-del-rio-vs-snoop-...
    published: 11 Mar 2020
    Play in Full Screen
    2:00
    Trailer : Panik in der Sierra Nova (Day of the Animals / There is something out there)
    Panik in der Sierra Nova (1977) Regisseur: William Girdler Cast: Christopher Ge...
    published: 21 Feb 2010
    Play in Full Screen
    49:20
    VEGA$ S3E19 SEEK AND DESTROY
    VEGA$ S03 E19 · Seek and Destroy Original Airdate: April 22, 1981 A Russian who was testi...
    published: 02 Feb 2022
    Play in Full Screen
    21:02
    Movie Review - Robinson Crusoe On Mars (1964)
    My review of the sci-fi cult-classic from 1964, "Robinson Crusoe On Mars", starring Paul M...
    published: 13 Oct 2015
    Play in Full Screen
    3:17
    Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon)
    Stromae - Santé (Live From The Tonight Show Starring Jimmy Fallon on NBC) Listen to "La so...
    published: 21 Dec 2021
    Play in Full Screen

    Paul Mantee

    Paul Mantee (January 9, 1931 – November 7, 2013) was an American film and television actor.

    Mantee was born Paul Marianetti in San Francisco, California. A journalism major at San Mateo Junior College, Mantee enlisted in the U.S. Navy for four years during the Korean War that made him decide on acting as a career. His stage name was changed from an Italian sounding name to the name of Humphrey Bogart's character in The Petrified Forest. He made a great number of guest appearances in well-known television shows and starred in a handful of films, including a cult classic, Robinson Crusoe on Mars. A restored version of the film was released in 2007 by The Criterion Collection. Mantee authored two novels, In Search of the Perfect Ravioli (Ballantine Books, 1991) and a semi-autobiographical Bruno of Hollywood (Ballantine Books, 1994).

    TV and filmography

    Notes

    External links

  • Paul Mantee at the Internet Movie Database
  • Paul Mantee at Allmovie
  • Notice of death

  • '); } 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: paul mantee

    Edit

    Hunter Season 7 Streaming: Watch & Stream Online via Peacock & Amazon Prime Video

    Coming Soon 04 Feb 2024
    Image Credit. National Broadcasting Company ... Is Hunter Season 7 available to watch via streaming? ... The supporting cast also features Charles Hallahan, Darlanne Fluegel, Lauren Lane, Paul Mantee, and Phillip Troy Linger, among others ... Go to PeacockTV.com.
    • 1

    Most Viewed

    ×