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

Dick Franks

Sir Arthur Temple "Dick" Franks KCMG (13 July 1920 12 October 2008) was Head of the British Secret Intelligence Service from 1979 to 1982.

Career

Educated at Rugby School and Queen's College, Oxford, Franks was commissioned into the Royal Corps of Signals in 1940. He became an Intelligence officer in the Western Desert and then joined the Special Operations Executive.

After the War he briefly worked for the Daily Mirror before joining the Secret Intelligence Service in 1946. He became involved in Operation Boot, a plan to overthrow Mohammad Mosaddegh, the nationalistic Iranian Prime Minister in 1953. He was posted to Bonn in 1962 and was promoted to Deputy Chief in 1977. He was appointed Chief of the Service in 1978.

He lived at Aldeburgh in Suffolk.

References

External links

  • Daily Telegraph obituary
  • Financial Times obituary

  • Franks

    The Franks (Latin: Franci or gens Francorum) are historically first known as a group of Germanic tribes that roamed the land between the Lower and Middle Rhine in the 3rd century AD, and second as the people of Gaul who merged with the Gallo-Roman populations during succeeding centuries, passing on their name to modern-day France and becoming part of the heritage of the modern French people. Some Franks raided Roman territory, while other Frankish tribes joined the Roman troops of Gaul. In later times, Franks became the military rulers of the northern part of Roman Gaul. With the coronation of their ruler Charlemagne as Imperator Romanorum by Pope Leo III in 800 AD, he and his successors were portrayed as legitimate successors to the emperors of the Western Roman Empire.

    The Salian Franks lived on Roman-held soil between the Rhine, Scheldt, Meuse, and Somme rivers in what is now Northern France, Belgium and the southern Netherlands. The kingdom was acknowledged by the Romans after 357 AD. Following the collapse of Rome in the West, the Frankish tribes were united under the Merovingians, who succeeded in conquering most of Gaul in the 6th century. The Franks became very powerful after this. The Merovingian dynasty, descendants of the Salians, founded one of the Germanic monarchies that would absorb large parts of the Western Roman Empire. The Frankish state consolidated its hold over the majority of western Europe by the end of the 8th century, developing into the Carolingian Empire. This empire would gradually evolve into the state of France and the Holy Roman Empire.

    Franks (disambiguation)

    The Franks were a confederacy of ancient to early medieval Germanic tribes.

    Franks may also refer to:

  • Farangi, Crusaders of western Europe, and more generally a term for "western European"
  • French people
  • Franconians
  • Franks (surname)
  • USS Franks (DD-554), a United States Navy warship
  • Franc, a unit of currency (Frank in Dutch, Franken in German and Swiss German)
  • slang abbreviation of Frankfurter, as another name used to refer to Hot Dogs
  • See also

  • Name of the Franks
  • Frank (disambiguation)
  • Frank's (disambiguation)
  • Franc
  • Franconia
  • Frankokratia
  • Frank (given name)
  • Francisco
  • Francois
  • Farangi
  • Firang
  • Firangi (sword)
  • Farang
  • Barang (disambiguation)
  • Franks (surname)

    Franks is also an Anglo-American surname, derived from the given name Frank. The name is on record in Virginia from the 1660s.

    People with the surname include:

  • David Franks (loyalist) (1720 - 1794), prominent Loyalist in the American Revolution
  • David Franks (aide-de-camp) (David Salisbury Franks) (1740 - 1793), aide-de-camp of Benedict Arnold
  • Augustus Wollaston Franks (1826 - 1897), English antiquarian
  • William Sadler Franks (1851 - 1935), British astronomer
  • Wilbur R. Franks (1901 - 1986), Canadian scientist
  • Oliver Shewell Franks (1905 - 1992), English philosopher
  • Bobby Franks (1909 - 1924), murder victim
  • Herman Franks (1914 - 2009), American Major League baseball player and coach
  • Tillman Franks (1920 - 2006), American bassist and songwriter
  • Dick Franks (1920 - 2008), Head of the Secret Intelligence Service (1979-1982)
  • Cecil Franks (born 1935), former English Member of Parliament
  • Michael Franks (musician) (born 1944), US-American jazz singer/songwriter
  • Tommy Franks (born 1945), U.S. general
  • Podcasts:

    • BONER PRANKS IN PUBLIC | GIRLS BEEN SURPRISED

      #BONER #Prank Hello Dear Viewers, This is our ultimate best of video so far we created! . We pranked a lot of people pretty good :) Follow Laugh 4 Life on facebook https://www.facebook.com/Laugh4LifeTV ✔️ Care to subscribe https://www.youtube.com/c/Laugh4LifeO... ✔️ Turn on notifications and never miss any upcoming videos!

      published: 21 Jun 2021
    • Big dick prank....for only fun

      We work in India but we made this video when our team is in foreign. This video has been made in France.The whole team spent more time to make this single video..We will soon make some more videos for all of you. No copyright section in our videos.We all make to entertain you all guys. Thanks for watching Make sure to subscribe and press the bell icon and if you enjoyed please like and share #fun4life

      published: 02 Jul 2020
    • 😉😀 Prank, terung jumbu bikin ganas

      published: 18 Aug 2021
    • BIG PENIS PRANK On Public - PRANKS TUBE

      BIG PENIS PRANK On Public - PRANKS TUBE #PRANKS #Public_Prank #Penis_Prank

      published: 12 Sep 2020
    • Dick Franks

      published: 31 Jan 2011
    • big size prank best girls reactions funny video Qylek

      More videos: https://www.instagram.com/qylek

      published: 17 Jul 2021
    • Dick Franks

      Up close and in his personal space.

      published: 02 Aug 2012
    • Dick franks pro rope swinger

      Rope swing champion of 2012

      published: 30 Jul 2012
    • Olympic Village Tour: See Where The Athletes Live, Train And Fuck Each Other

      Subscribe to The Onion on YouTube: http://bit.ly/xzrBUA Take a look inside the dorms, restaurants, and gymnasiums where these modern day gods and goddesses go crazy on each other's perfect bodies. Like The Onion on Facebook: http://www.fb.com/theonion Follow The Onion on Twitter: http://www.twitter.com/theonion More Breaking News: http://www.theonion.com/video/

      published: 13 Feb 2014
    BONER PRANKS IN PUBLIC | GIRLS BEEN SURPRISED
    4:17

    BONER PRANKS IN PUBLIC | GIRLS BEEN SURPRISED

    • Order:
    • Duration: 4:17
    • Uploaded Date: 21 Jun 2021
    • views: 6786239
    #BONER #Prank Hello Dear Viewers, This is our ultimate best of video so far we created! . We pranked a lot of people pretty good :) Follow Laugh 4 Life on facebook https://www.facebook.com/Laugh4LifeTV ✔️ Care to subscribe https://www.youtube.com/c/Laugh4LifeO... ✔️ Turn on notifications and never miss any upcoming videos!
    https://wn.com/Boner_Pranks_In_Public_|_Girls_Been_Surprised
    Big dick prank....for only fun
    4:31

    Big dick prank....for only fun

    • Order:
    • Duration: 4:31
    • Uploaded Date: 02 Jul 2020
    • views: 1027289
    We work in India but we made this video when our team is in foreign. This video has been made in France.The whole team spent more time to make this single video..We will soon make some more videos for all of you. No copyright section in our videos.We all make to entertain you all guys. Thanks for watching Make sure to subscribe and press the bell icon and if you enjoyed please like and share #fun4life
    https://wn.com/Big_Dick_Prank....For_Only_Fun
    😉😀 Prank, terung jumbu bikin ganas
    11:24

    😉😀 Prank, terung jumbu bikin ganas

    • Order:
    • Duration: 11:24
    • Uploaded Date: 18 Aug 2021
    • views: 303408
    https://wn.com/😉😀_Prank,_Terung_Jumbu_Bikin_Ganas
    BIG PENIS PRANK On Public - PRANKS TUBE
    0:36

    BIG PENIS PRANK On Public - PRANKS TUBE

    • Order:
    • Duration: 0:36
    • Uploaded Date: 12 Sep 2020
    • views: 767376
    BIG PENIS PRANK On Public - PRANKS TUBE #PRANKS #Public_Prank #Penis_Prank
    https://wn.com/Big_Penis_Prank_On_Public_Pranks_Tube
    Dick Franks
    0:50

    Dick Franks

    • Order:
    • Duration: 0:50
    • Uploaded Date: 31 Jan 2011
    • views: 139
    https://wn.com/Dick_Franks
    big size prank best girls reactions funny video Qylek
    1:21

    big size prank best girls reactions funny video Qylek

    • Order:
    • Duration: 1:21
    • Uploaded Date: 17 Jul 2021
    • views: 5179728
    More videos: https://www.instagram.com/qylek
    https://wn.com/Big_Size_Prank_Best_Girls_Reactions_Funny_Video_Qylek
    Dick Franks
    2:30

    Dick Franks

    • Order:
    • Duration: 2:30
    • Uploaded Date: 02 Aug 2012
    • views: 38
    Up close and in his personal space.
    https://wn.com/Dick_Franks
    Dick franks pro rope swinger
    0:10

    Dick franks pro rope swinger

    • Order:
    • Duration: 0:10
    • Uploaded Date: 30 Jul 2012
    • views: 34
    Rope swing champion of 2012
    https://wn.com/Dick_Franks_Pro_Rope_Swinger
    Olympic Village Tour: See Where The Athletes Live, Train And Fuck Each Other
    2:48

    Olympic Village Tour: See Where The Athletes Live, Train And Fuck Each Other

    • Order:
    • Duration: 2:48
    • Uploaded Date: 13 Feb 2014
    • views: 29506732
    Subscribe to The Onion on YouTube: http://bit.ly/xzrBUA Take a look inside the dorms, restaurants, and gymnasiums where these modern day gods and goddesses go crazy on each other's perfect bodies. Like The Onion on Facebook: http://www.fb.com/theonion Follow The Onion on Twitter: http://www.twitter.com/theonion More Breaking News: http://www.theonion.com/video/
    https://wn.com/Olympic_Village_Tour_See_Where_The_Athletes_Live,_Train_And_Fuck_Each_Other
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 28:27

    BONER PRANKS IN PUBLIC | GIRLS BEEN SURPRISED

    #BONER #Prank Hello Dear Viewers, This is our ultimate best of video so far we created! . We pranked a lot of people pretty good :) Follow Laugh 4 Life on facebook https://www.facebook.com/Laugh4LifeTV ✔️ Care to subscribe https://www.youtube.com/c/Laugh4LifeO... ✔️ Turn on notifications and never miss any upcoming videos!
    4:17
    BONER PRANKS IN PUBLIC | GIRLS BEEN SURPRISED
    #BONER #Prank Hello Dear Viewers, This is our ultimate best of video so far we created!...
    published: 21 Jun 2021
    Play in Full Screen
    4:31
    Big dick prank....for only fun
    We work in India but we made this video when our team is in foreign. This video has been m...
    published: 02 Jul 2020
    Play in Full Screen
    11:24
    😉😀 Prank, terung jumbu bikin ganas
    published: 18 Aug 2021
    Play in Full Screen
    0:36
    BIG PENIS PRANK On Public - PRANKS TUBE
    BIG PENIS PRANK On Public - PRANKS TUBE #PRANKS #Public_Prank #Penis_Prank
    published: 12 Sep 2020
    Play in Full Screen
    0:50
    Dick Franks
    published: 31 Jan 2011
    Play in Full Screen
    1:21
    big size prank best girls reactions funny video Qylek
    More videos: https://www.instagram.com/qylek
    published: 17 Jul 2021
    Play in Full Screen
    2:30
    Dick Franks
    Up close and in his personal space.
    published: 02 Aug 2012
    Play in Full Screen
    0:10
    Dick franks pro rope swinger
    Rope swing champion of 2012
    published: 30 Jul 2012
    Play in Full Screen
    2:48
    Olympic Village Tour: See Where The Athletes Live, Train And Fuck Each Other
    Subscribe to The Onion on YouTube: http://bit.ly/xzrBUA Take a look inside the dorms, res...
    published: 13 Feb 2014
    Play in Full Screen

    Dick Franks

    Sir Arthur Temple "Dick" Franks KCMG (13 July 1920 12 October 2008) was Head of the British Secret Intelligence Service from 1979 to 1982.

    Career

    Educated at Rugby School and Queen's College, Oxford, Franks was commissioned into the Royal Corps of Signals in 1940. He became an Intelligence officer in the Western Desert and then joined the Special Operations Executive.

    After the War he briefly worked for the Daily Mirror before joining the Secret Intelligence Service in 1946. He became involved in Operation Boot, a plan to overthrow Mohammad Mosaddegh, the nationalistic Iranian Prime Minister in 1953. He was posted to Bonn in 1962 and was promoted to Deputy Chief in 1977. He was appointed Chief of the Service in 1978.

    He lived at Aldeburgh in Suffolk.

    References

    External links

  • Daily Telegraph obituary
  • Financial Times obituary

  • '); } 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: dick franks

    Edit

    Honour the man who helped saved the Albion

    Yahoo Daily News 22 Mar 2025
    ... Dick Knight made a plea in the Argus ... It was desperate times, hence Dick’s message to the fans ... It’s frankly upsetting to think the club might regard this as a sufficient way to honour Dick Knight.
    Edit

    Todd: Here's my ranking of the Canadiens' general managers since 1946

    Toronto Sun 11 Mar 2025
    Story continues below ... View more offers ... My own view is short on figures like coach/GM/owner Leo Dandurand and begins instead with Frank J. Selke, only because I was able to learn about Selke from legends like Red Fisher and Dick Irvin Jr ... 1 ... 2. Frank J ... 1.
    Edit

    George G. Cummins

    Charles City Press 10 Mar 2025
    He was preceded in death by his parents, Fred and Lucile Cummins; a brother, Frank; maternal and paternal grandparents; two brothers-in-law. Brian Garrington and Dick Granger; and father and mother-in-law, Roy and Virginia Mortimore.
    • 1
    ×