- published: 28 Sep 2010
- views: 86615255
'+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; })); }); -->
Olivia Newton-John, AO, OBE (born 26 September 1948) is an English-born Australian singer, songwriter and actress. She is a four-time Grammy award winner who has amassed five number-one and ten other Top Ten Billboard Hot 100 singles, and two number-one Billboard 200 solo albums. Eleven of her singles (including two platinum) and fourteen of her albums (including two platinum and four double platinum) have been certified gold by the RIAA. She has sold an estimated 100 million records, making her one of the world's best-selling music artists of all time. She starred in Grease, which featured one of the most successful soundtracks in Hollywood history.
Newton-John has been a long-time activist for environmental and animal rights issues. Since surviving breast cancer in 1992, she has been an advocate for health awareness becoming involved with various charities, health products and fundraising efforts. Her business interests have included launching several product lines for Koala Blue and co-owning the Gaia Retreat & Spa in Australia.
This Christmas may refer to:
This Christmas is the first holiday album released by singer Patti LaBelle on the MCA label. The album included original compositions such as "Twas Love", which LaBelle shot a video for, and "Nothing Could Be Better", which was sung live by LaBelle during an appearance on the show, A Different World, where she played Kadeem Hardison's mother. The album was released while LaBelle was working on a follow-up to her last pop album, Be Yourself. This would be LaBelle's only Christmas-related studio album until the release of Miss Patti's Christmas nearly 20 years later.
The album would be re-released in 1995 (and again in 2004 under the "20th Century Masters: The Christmas Collection" line) with the bonus track "Angel Man".
"This Christmas" is a song by American jazz musician Donny Hathaway released in 1970 by Atco Records. The song gained renewed interest when it was included in 1991 on Atco Records' revised edition of their 1968 Soul Christmas compilation album and has since become a modern Christmas standard, with the American Society of Composers, Authors and Publishers reporting that it was the 30th most-performed holiday song of all time.
Phil Upchurch said the song was "absolutely the premiere holiday song written by an African American". It was written by Hathaway and Nadine McKinnor.
"This Christmas" was recorded at Audio Finishers Studio on Ontario Street, Chicago in the fall of 1970. Ric Powell (see credits below) said that Hathaway was "very upbeat during the session" and that he "knew what he wanted to do musically and the impact he wanted to make with this song" regarding the representation of African Americans in Christmas music. On writing the song with Hathaway (who died in 1979), Nadine McKinnor said she felt "blessed to have written with Donny a song that celebrates the possibilities, the expectations, and the anticipation of Christmas and the good fun and happy loving times", and that the creation of the song "was a God plan. God was in this plan. And Donny Hathaway was a genius."
"This Christmas" performed by Chris Brown Listen to Chris Brown: https://ChrisBrown.lnk.to/listenYD Subscribe to the official Chris Brown YouTube channel: https://ChrisBrown.lnk.to/subscribeYD Watch more videos by Chris Brown: https://ChrisBrown.lnk.to/listenYD/youtube Follow Chris Brown: Facebook: https://ChrisBrown.lnk.to/followFI Twitter: https://ChrisBrown.lnk.to/followTI Instagram: https://ChrisBrown.lnk.to/followII Website: https://ChrisBrown.lnk.to/followWI Spotify: https://ChrisBrown.lnk.to/followSI Lyrics: The fireside is blazing bright And we're caroling through the night And this Christmas will be A very special Christmas for me, yeah, huh, woah-oh-oh Oh, haha, shake a hand, shake a hand now Na-na-na-na-na-na #ChrisBrown #ThisChristmas #ChristmasMusic #HD #Remastered
You're watching the official music video for Donny Hathaway - "This Christmas" drawn by famed cartoonist Lonnie Milsap. “This Christmas (Duet)” by Donny Hathaway with Lalah Hathaway available now! https://rhino.lnk.to/DHLHThisXmas Follow Donny Hathaway: Website https://www.donnyhathaway.com/ Facebook https://www.facebook.com/DonnyHathawayOfficial Instagram https://www.instagram.com/donnyhathaway This Christmas Lyrics: Hang all the mistletoe I'm gonna get to know you better This Christmas And as we trim the tree How much fun it's gonna be together This Christmas Fireside is blazing bright We're caroling through the night And this Christmas will be A very special Christmas for me Presents and cards are here My world is filled with cheer and you This Christmas And as I look around Your e...
http://www.facebook.com/bandpicturethis http://www.twitter.com/bandpicturethis http://www.instagram.com/bandpicturethis Choir: The Line-Up Choir @thelineupchoir
You're listening to the official audio for Donny Hathaway - 'This Christmas'. Stay connected with Donny Hathaway... Facebook: https://www.facebook.com/DonnyHathawayOfficial/ Listen: https://lnk.to/DonnyHathawayTopTracks Check Out The Rhino Holiday Playlists: Christmas Hits Playlist http://bit.ly/RhinoChristmasHits Christmas Classics http://bit.ly/RhinoChristmasClassics Calm Christmas http://bit.ly/RelaxingChristmasMusic 100 Greatest Christmas Songs http://bit.ly/GreatestXmasSongs Christmas Soundtracks http://bit.ly/XmasMoviePlaylist Lyrics: Hang all the mistletoe I'm gonna get to know you better This Christmas And as we trim the tree How much fun it's gonna be together This Christmas The fireside is blazing bright We're caroling through the night And this Christmas, will be A very sp...
Music video by Gloria Estefan performing This Christmas. (C) 1993 SONY BMG MUSIC ENTERTAINMENT
TAEYEON's winter album "This Christmas – Winter is Coming" has been released. Listen and download on iTunes & Apple Music, Spotify, and Google Play Music http://smarturl.it/TAEYEONthischristmas #TAEYEON #태연 #Winter_album #ThisChristmas_WinterisComing #TitleTrack #ThisChristmas #171212 #6PM [Tracklist] 01 The Magic of Christmas Time 02 This Christmas 03 Let It Snow 04 Candy Cane 05 Christmas without You 06 쉿 (Shhhh) 07 겨울나무 (I’m all ears) 08 This Christmas (Inst.) TAEYEON Official http://taeyeon.smtown.com http://www.youtube.com/GIRLSGENERATION http://www.facebook.com/girlsgeneration http://twitter.com/girlsgeneration TAEYEON 태연 'This Christmas' MV ℗ S.M.Entertainment
Ne-Yo’s ‘Another Kind Of Christmas' album, available now! Listen / Download here: https://NE-YO.lnk.to/AnotherKindofChristmasYD "NE-YO releases his first-ever Christmas album, featuring new, original Christmas songs and classic covers delivered with his familiar sound and wrapped in contemporary production. His rendition of the classic, "This Christmas," brings to mind the great Donny Hathaway but NE-YO makes it all his own, and on the original "Just Ain't Christmas" he combines nostalgic lyrics with a powerful hook and pulsing groove, sure to make this the Christmas album of the year." Follow Ne-Yo: https://www.instagram.com/NEYO https://twitter.com/NEYOcompound https://www.facebook.com/NEYO http://www.neyothegentleman.com #NeYo #AnotherKindOfChristmas #MerryChristmas Music video by ...
Your place for the best R&B/Hip-Hop vibes with lyrics. 🎵PROMOTED SONG: Malinen - “Letter” OFFICIAL VIDEO: https://www.youtube.com/watch?v=4M1SOHkuxKA 📱Connect with Privilege RnB: Instagram: https://www.instagram.com/privilegeRnB Twitter: https://twitter.com/privilegeRnB 🎧Music Promotions: [email protected] MALINEN: FACEBOOK - http://bit.ly/MalinenFB INSTAGRAM - http://bit.ly/MalinenIG VK - http://bit.ly/MalinenVK _________________________________________ This is a lyric video for "This Christmas" by Chris Brown. Tags: #ChrisBrown #ThisChristmas #PrivilegeRnB _________________________________________
Jess Glynne covers the Christmas classic "This Christmas' originally performed by Donny Hathaway - an Amazon Original Listen to Jess Glynne – This Christmas (Amazon Original) here: https://lnk.to/This-Christmas 3 months free trial of Amazon Music here: http://amzn.to/jessglynne Subscribe to Jess Glynne on YouTube: http://bit.ly/1TnsEYg Jess Glynne: Facebook: https://www.facebook.com/JessGlynne Instagram: https://instagram.com/jessglynne Twitter: https://twitter.com/JessGlynne Spotify: http://spoti.fi/1cI6gaz Website: http://jessglynne.co.uk #JessGlynne #ThisChristmas #AmazonOriginal
Wham! - Last Christmas (Official Video) WHAM! The Singles: Echoes From The Edge Of Heaven: https://wham.lnk.to/TheSingles Stream and download here: https://Wham.lnk.to/Playlists Subscribe to the Wham! YouTube Channel: https://Wham.lnk.to/YT_Subscribe WATCH LAST CHRISTMAS 4K MUSIC VIDEO ► https://Wham.lnk.to/lastchristmasplaylistAY WATCH CARELESS WHISPER HD MUSIC VIDEO ► https://GeorgeMichael.lnk.to/carelessplaylistAY WATCH WAKE ME UP HD MUSIC VIDEO ► https://Wham.lnk.to/toptracksplaylistAY WATCH CLUB TROPICANA 4K MUSIC VIDEO ►https://Wham.lnk.to/ctplaylistAY Follow Wham!: Tik Tok - https://www.tiktok.com/@wham Instagram - https://www.instagram.com/whamofficial Twitter - https://twitter.com/WhamOfficial_ Facebook - https://www.facebook.com/Wham #Wham #Last Christmas #WhamOffi...
Olivia Newton-John, AO, OBE (born 26 September 1948) is an English-born Australian singer, songwriter and actress. She is a four-time Grammy award winner who has amassed five number-one and ten other Top Ten Billboard Hot 100 singles, and two number-one Billboard 200 solo albums. Eleven of her singles (including two platinum) and fourteen of her albums (including two platinum and four double platinum) have been certified gold by the RIAA. She has sold an estimated 100 million records, making her one of the world's best-selling music artists of all time. She starred in Grease, which featured one of the most successful soundtracks in Hollywood history.
Newton-John has been a long-time activist for environmental and animal rights issues. Since surviving breast cancer in 1992, she has been an advocate for health awareness becoming involved with various charities, health products and fundraising efforts. Her business interests have included launching several product lines for Koala Blue and co-owning the Gaia Retreat & Spa in Australia.
Hang all the mistletoe
I'm gonna get to know you better
This Christmas
And as we trim the tree
How much fun it's gonna be together
This Christmas
The fireside is blazing bright
We're caroling through the night
And this Christmas will be
A very special Christmas for me, yeah
Hang all the mistletoe
I'm gonna get to know you better
This Christmas
And as we trim the tree
How much fun it's gonna be
This Christmas
The fireside is blazing bright
We're caroling through the night
And this Christmas will be
A very special Christmas for me, yeah
Presents and cards are here
My world is filled with cheer and you
This Christmas
Lights twinkle all around
But your eyes outshine the town
This Christmas
The fireside is blazing bright
We're caroling through the night
And this Christmas will be
A very special Christmas for me, yeah
The fireside is blazing bright
We're caroling through the night
And this Christmas will be