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

Joyce Blair

Joyce Blair (born Joyce Ogus; 4 November 1932 19 August 2006) was an English actress and dancer. She was the younger sister of Lionel Blair, with whom she often performed. She was the mother of actress Deborah Sheridan-Taylor, who played Saskia Duncan in EastEnders, and of a son, Adam, who is a photographer.

Life and career

Blair was born in London, as the daughter of Myer Ogus and Deborah (Della) Greenbaum. Her family was Jewish. Her father was a Russian barber; he changed the family name to Blair in her youth, and died when Joyce was 12 years old. Blair was educated at Cone's School in London, and started her show-business career by singing and tap-dancing in front of captive audiences in London air raid shelters during the Second World War. She and her brother took up show-business as professionals to support their mother after their father's death in 1944. She made her first professional stage appearance in the J.M. Barrie play Quality Street at the Embassy Theatre in 1945, aged 13.

The Sheik of Araby

"The Sheik of Araby" is a song that was written in 1921 by Harry B. Smith and Francis Wheeler, with music by Ted Snyder. It was composed in response to the popularity of the Rudolph Valentino feature film The Sheik. In 1926, to go with the film The Son of the Sheik, Ted Snyder worked parts of the melody into "That Night in Araby", a related song with words by Billy Rose.

"The Sheik of Araby" was a Tin Pan Alley hit, and was also adopted by early jazz bands, especially in New Orleans, making it a jazz standard. It was a well recognized part of popular culture. A verse also appears in the novel The Great Gatsby (1925) by F. Scott Fitzgerald. In 1926, Fleischer Studios released a cartoon with this song, recorded in Phonofilm, as part of their Song Car-Tunes series, and a live action short with this title was filmed in Phonofilm in the UK, directed by Miles Mander.

The "Araby" in the title refers to Arabia or the Arabian Peninsula. The appeal to New Orleans bands may have lain in "Araby" sharing the same pronunciation as Arabi, Louisiana, a town downriver from New Orleans' 9th Ward and a center for gambling just outside city limits until the early 1950s.

Podcasts:

  • Joyce Blair - "Gotta Get Away Now" - '65

    Sister of Lionel. Unrelated to Tony. Backed here by JOHN BARRY.

    published: 27 Jun 2010
  • JoyceBlair

    published: 13 Mar 2017
  • Lionel & Joyce Blair - Must Be Madison (Rare Video)

    Lionel & Joyce Blair - Must Be Madison (Rare Video)

    published: 27 Sep 2023
  • BE MY GUEST (U.K.; 1965) Joyce Blair sings "Gotta Get Away Now"

    Musical number from Lance Comfort's pop-filled British teen movie BE MY GUEST (1965), starring David Hemmings, Andrea Monet, John Pike, Steve Marriott (of The Small Faces), Diana King, Avril Angers, Jerry Lee Lewis, John Carpenter, John Hinds, John Peeby, Joyce Blair, David Healy, The Plebs, The Nashiville Teens, and Kenny and the Wranglers (Ken Bernard)

    published: 02 Jul 2011
  • Joyce Blair

    Joyce Blair was an English actress and dancer. She was the younger sister of Lionel Blair, with whom she often performed. She was the mother of actress Deborah Sheridan-Taylor, who played Saskia Duncan in EastEnders.

    published: 05 Nov 2021
  • Baby, It's Cold Outside - Joyce Blair & Oliver Reed

    Why don't you start losing your inhibitions?

    published: 23 Feb 2012
  • Fasting: It’s Time To See New & Bigger Things

    I am not a doctor; However, I am sharing my testimonies with you all. Consult your doctor before fasting! I love you all. Donate: https://www.paypal.me/joykblair My CashApp: $jhomehealthcare (Thanks For All The Blessings) Fasting is The Key Apparel: https://teespring.com/stores/fasting-is-the-key Email me for prayer joyblairinfo@yahoo.com Saturday Prayer Call when announced: 641-715-0700 Access Code: 765884 21 Day FASTING MEAL PLAN & EXERCISE PLANS $75 Email: joyblairinfo@yahoo.com for Meal Plans Books: Fasting Is The Key: 10 Day Devotional https://www.amazon.com/Fasting-Key-10-Day-Devotional/dp/1468130838/ref=sr_1_9?s=books&ie=UTF8&qid=1536254285&sr=1-9&keywords=joy+k+blair Fasting Is The Key: 21 Day Devotional https://www.amazon.com/Fasting-Key-21-Day...

    published: 23 Jul 2022
  • Joyce Blair The Choice is Joyce May 20 10

    published: 22 Mar 2012
  • Oliver Reed & Joyce Blair - Baby, It's Cold Outside

    ♥ Merry Xmas To Everybody!! ♥ The childhood photo (with David, Olly & his uncle) and that one with the big dog has been taken from the regrettably expired site of Mr. Nigel Napier-Andrews, Oliver's cousin (gentlemansportion.wordpress.com)

    published: 15 Dec 2013
  • Home remodel from the ground up with Joyce and Blair

    Joyce and Blair recently made a big life change moving across the country from San Francisco to Connecticut. Watch their story about how they bought a fixer-upper, remodeled it down to the studs and happily obsessed over marble details with the help of Pinterest. http://pinterest.com/ iTunes App Store: http://pin.it/VQ-xmlR Google Play: http://pin.it/bEYNSEA

    published: 18 Jan 2024
developed with YouTube
Joyce Blair - "Gotta Get Away Now" - '65
2:17

Joyce Blair - "Gotta Get Away Now" - '65

  • Order:
  • Duration: 2:17
  • Uploaded Date: 27 Jun 2010
  • views: 6276
Sister of Lionel. Unrelated to Tony. Backed here by JOHN BARRY.
https://wn.com/Joyce_Blair_Gotta_Get_Away_Now_'65
JoyceBlair
1:12

JoyceBlair

  • Order:
  • Duration: 1:12
  • Uploaded Date: 13 Mar 2017
  • views: 2353
https://wn.com/Joyceblair
Lionel & Joyce Blair - Must Be Madison (Rare Video)
2:18

Lionel & Joyce Blair - Must Be Madison (Rare Video)

  • Order:
  • Duration: 2:18
  • Uploaded Date: 27 Sep 2023
  • views: 280
Lionel & Joyce Blair - Must Be Madison (Rare Video)
https://wn.com/Lionel_Joyce_Blair_Must_Be_Madison_(Rare_Video)
BE MY GUEST (U.K.; 1965) Joyce Blair sings "Gotta Get Away Now"
2:43

BE MY GUEST (U.K.; 1965) Joyce Blair sings "Gotta Get Away Now"

  • Order:
  • Duration: 2:43
  • Uploaded Date: 02 Jul 2011
  • views: 4393
Musical number from Lance Comfort's pop-filled British teen movie BE MY GUEST (1965), starring David Hemmings, Andrea Monet, John Pike, Steve Marriott (of The Small Faces), Diana King, Avril Angers, Jerry Lee Lewis, John Carpenter, John Hinds, John Peeby, Joyce Blair, David Healy, The Plebs, The Nashiville Teens, and Kenny and the Wranglers (Ken Bernard)
https://wn.com/Be_My_Guest_(U.K._1965)_Joyce_Blair_Sings_Gotta_Get_Away_Now
Joyce Blair
1:20

Joyce Blair

  • Order:
  • Duration: 1:20
  • Uploaded Date: 05 Nov 2021
  • views: 198
Joyce Blair was an English actress and dancer. She was the younger sister of Lionel Blair, with whom she often performed. She was the mother of actress Deborah Sheridan-Taylor, who played Saskia Duncan in EastEnders.
https://wn.com/Joyce_Blair
Baby, It's Cold Outside - Joyce Blair & Oliver Reed
3:12

Baby, It's Cold Outside - Joyce Blair & Oliver Reed

  • Order:
  • Duration: 3:12
  • Uploaded Date: 23 Feb 2012
  • views: 4174
Why don't you start losing your inhibitions?
https://wn.com/Baby,_It's_Cold_Outside_Joyce_Blair_Oliver_Reed
Fasting: It’s Time To See New & Bigger Things
1:10:20

Fasting: It’s Time To See New & Bigger Things

  • Order:
  • Duration: 1:10:20
  • Uploaded Date: 23 Jul 2022
  • views: 5573
I am not a doctor; However, I am sharing my testimonies with you all. Consult your doctor before fasting! I love you all. Donate: https://www.paypal.me/joykblair My CashApp: $jhomehealthcare (Thanks For All The Blessings) Fasting is The Key Apparel: https://teespring.com/stores/fasting-is-the-key Email me for prayer joyblairinfo@yahoo.com Saturday Prayer Call when announced: 641-715-0700 Access Code: 765884 21 Day FASTING MEAL PLAN & EXERCISE PLANS $75 Email: joyblairinfo@yahoo.com for Meal Plans Books: Fasting Is The Key: 10 Day Devotional https://www.amazon.com/Fasting-Key-10-Day-Devotional/dp/1468130838/ref=sr_1_9?s=books&ie=UTF8&qid=1536254285&sr=1-9&keywords=joy+k+blair Fasting Is The Key: 21 Day Devotional https://www.amazon.com/Fasting-Key-21-Day-Devotional/dp/1470067994/ref=sr_1_fkmr0_1?s=books&ie=UTF8&qid=1536254656&sr=1-1-fkmr0&keywords=fasting+is+the+key+21+day+devotional+joy+k+blair Fasting Is The Key 40 Day Poetry Devotional https://www.amazon.com/Fasting-Key-Day-Poetry-Devotional-ebook/dp/B008GHMQF6/ref=sr_1_fkmr1_4?s=books&ie=UTF8&qid=1536254701&sr=1-4-fkmr1&keywords=fasting+is+the+key+21+day+devotional+joy+k+blair Kiss Of Deception: 10 Day Fasting Devotional to Overcome Narcissistic Abuse https://www.amazon.com/Kiss-Deception-Devotional-Overcome-Narcissistic/dp/1978251734/ref=sr_1_1?s=books&ie=UTF8&qid=1536254285&sr=1-1&keywords=joy+k+blair Wife Me Already: 40 Day Devotional to Help Prepare You for Your Husband https://www.amazon.com/Wife-Me-Already-Devotional-Prepare/dp/1533430160/ref=sr_1_4?s=books&ie=UTF8&qid=1536254285&sr=1-4&keywords=joy+k+blair
https://wn.com/Fasting_It’S_Time_To_See_New_Bigger_Things
Joyce Blair   The Choice is Joyce   May 20 10
0:17

Joyce Blair The Choice is Joyce May 20 10

  • Order:
  • Duration: 0:17
  • Uploaded Date: 22 Mar 2012
  • views: 87
https://wn.com/Joyce_Blair_The_Choice_Is_Joyce_May_20_10
Oliver Reed & Joyce Blair - Baby, It's Cold Outside
3:11

Oliver Reed & Joyce Blair - Baby, It's Cold Outside

  • Order:
  • Duration: 3:11
  • Uploaded Date: 15 Dec 2013
  • views: 2508
♥ Merry Xmas To Everybody!! ♥ The childhood photo (with David, Olly & his uncle) and that one with the big dog has been taken from the regrettably expired site of Mr. Nigel Napier-Andrews, Oliver's cousin (gentlemansportion.wordpress.com)
https://wn.com/Oliver_Reed_Joyce_Blair_Baby,_It's_Cold_Outside
Home remodel from the ground up with Joyce and Blair
1:18

Home remodel from the ground up with Joyce and Blair

  • Order:
  • Duration: 1:18
  • Uploaded Date: 18 Jan 2024
  • views: 15252
Joyce and Blair recently made a big life change moving across the country from San Francisco to Connecticut. Watch their story about how they bought a fixer-upper, remodeled it down to the studs and happily obsessed over marble details with the help of Pinterest. http://pinterest.com/ iTunes App Store: http://pin.it/VQ-xmlR Google Play: http://pin.it/bEYNSEA
https://wn.com/Home_Remodel_From_The_Ground_Up_With_Joyce_And_Blair
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Joyce Blair - "Gotta Get Away Now" - '65

Sister of Lionel. Unrelated to Tony. Backed here by JOHN BARRY.
2:17
Joyce Blair - "Gotta Get Away Now" - '65
Sister of Lionel. Unrelated to Tony. Backed here by JOHN BARRY.
published: 27 Jun 2010
Play in Full Screen
1:12
JoyceBlair
published: 13 Mar 2017
Play in Full Screen
2:18
Lionel & Joyce Blair - Must Be Madison (Rare Video)
Lionel & Joyce Blair - Must Be Madison (Rare Video)
published: 27 Sep 2023
Play in Full Screen
2:43
BE MY GUEST (U.K.; 1965) Joyce Blair sings "Gotta Get Away Now"
Musical number from Lance Comfort's pop-filled British teen movie BE MY GUEST (1965), star...
published: 02 Jul 2011
Play in Full Screen
1:20
Joyce Blair
Joyce Blair was an English actress and dancer. She was the younger sister of Lionel Blair...
published: 05 Nov 2021
Play in Full Screen
3:12
Baby, It's Cold Outside - Joyce Blair & Oliver Reed
Why don't you start losing your inhibitions?
published: 23 Feb 2012
Play in Full Screen
1:10:20
Fasting: It’s Time To See New & Bigger Things
I am not a doctor; However, I am sharing my testimonies with you all. Consult your doctor ...
published: 23 Jul 2022
Play in Full Screen
0:17
Joyce Blair The Choice is Joyce May 20 10
published: 22 Mar 2012
Play in Full Screen
3:11
Oliver Reed & Joyce Blair - Baby, It's Cold Outside
♥ Merry Xmas To Everybody!! ♥ The childhood photo (with David, Olly & his uncle) and that ...
published: 15 Dec 2013
Play in Full Screen
1:18
Home remodel from the ground up with Joyce and Blair
Joyce and Blair recently made a big life change moving across the country from San Francis...
published: 18 Jan 2024
Play in Full Screen

Joyce Blair

Joyce Blair (born Joyce Ogus; 4 November 1932 19 August 2006) was an English actress and dancer. She was the younger sister of Lionel Blair, with whom she often performed. She was the mother of actress Deborah Sheridan-Taylor, who played Saskia Duncan in EastEnders, and of a son, Adam, who is a photographer.

Life and career

Blair was born in London, as the daughter of Myer Ogus and Deborah (Della) Greenbaum. Her family was Jewish. Her father was a Russian barber; he changed the family name to Blair in her youth, and died when Joyce was 12 years old. Blair was educated at Cone's School in London, and started her show-business career by singing and tap-dancing in front of captive audiences in London air raid shelters during the Second World War. She and her brother took up show-business as professionals to support their mother after their father's death in 1944. She made her first professional stage appearance in the J.M. Barrie play Quality Street at the Embassy Theatre in 1945, aged 13.

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