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

Podcasts:

  • A puffer’s paradise? Old habits die hard in smoke-friendly Japan • FRANCE 24 English

    Japan is known for its healthy diet and impressive life expectancy. But it is also a smoker’s paradise. Although the number of smokers has dropped by a third over the last 20 years, more than 17 million Japanese smoke regularly. They are easy to spot in Tokyo’s bars. The authorities are trying to make more public spaces smoke-free, but it is an up-hill struggle. Old habits die hard. And the government holds a large stake in Japan Tobacco, the world’s third-biggest manufacturer of cigarettes. #Japan #smoking #tobacco 🔔 Subscribe to France 24 now: https://f24.my/YTen 🔴 LIVE - Watch FRANCE 24 English 24/7 here: https://f24.my/YTliveEN 🌍 Read the latest International News and Top Stories: https://www.france24.com/en/ Like us on Facebook: https://f24.my/FBen Follow us on Twitter: https://f24...

    published: 31 May 2023
  • Forge your own path at JTI

    published: 22 Jun 2023
  • JAPAN FARMING .HARVESTING TOBACCO LEAVES @ate bie

    harvesting tobacco leaves .please watch .like and subscribe thank you@ate bie

    published: 21 May 2021
  • Japan Tobacco PH boss: Revenue will go down with higher sin taxes | ANC

    Headstart: "It will be disastrous." Imposing higher taxes on cigarettes does not guarantee that people will stop smoking and revenue may also go down with the rise of smuggling, according to the head of Japan Tobacco International Philippines. To watch more breaking news videos click the link below: https://www.youtube.com/playlist?list=PLgyY1WylJUmgZUQnLkWvSABLLRxAiE_z3 Check out what's trending on the internet! Click the link below: https://www.youtube.com/watch?v=GrXNmNs--A0&list=PLgyY1WylJUmiNASnHYchkIZsdUYgT_TQX For more positive vibes and good news, click the link below: https://www.youtube.com/watch?v=AcVYzJbvV90&list=PLgyY1WylJUmir8pkZENrF1o7C4t2sVwdg Subscribe to the ABS-CBN News channel! - http://bit.ly/TheABSCBNNews Visit our website at http://news.abs-cbn.com Facebook: ht...

    published: 29 May 2019
  • Buying Cigarettes at a 7/11 in Japan

    I Vlogged Myself Buying Cigarettes at a Japanese 7/11 Convenience Store. Follow Me on Instagram: https://instagram.com/jacobfuckingjones/ My Book, Merch, and Other Socials: http://jacobfuckingjones.com/ Subscribe to My Second Channel: https://youtube.com/c/jacobdrinkingjones/ PO BOX: # 2664 Timber Dr., Suite # 235 Garner, NC 27529 (po box address is subject to change, please check my 'about' page for the latest info) I do not encourage or condone any products, actions, or behaviors shown in this video. All videos are produced in a safe, professional, and controlled environment. Please do not attempt to replicate any actions performed during the video, all actions are performed by professionals.

    published: 22 May 2023
  • JTI announces expansion

    WSLS 10 at 6

    published: 02 Dec 2016
  • How to Smoke with a Traditional Japanese Pipe inside a 300 years old Machiya townhouse in Kyoto

    Despite having lived in Japan for 10+ years, I never really knew anything about KISERU, traditional Japanese smoking pipe. Luckily I was able to visit the Tanigawa Kiseru shop in Kyoto and learned about the history and culture of Kiseru in Japan. I also couldn't believe that Tanigawa san's shop is one of the few Kiseru shop still standing... Homepage of Tanigawa-san's 300 years old KISERU shop http://www.kiserusenmonten.com/ Homepage of Machiya Day 2023 (Events during 3/4~3/12 ) https://machiyanohi.jp/ #traditionalculture #japaneseculture #machiya #kominka #kyoto #kyotovlog

    published: 17 Feb 2023
  • I Went to a JAPANESE SMOKING CAFE, and it was Amazing.

    I Vlogged Myself Going to a JAPANESE SMOKING CAFE in Harajuku, Tokyo. Follow Me on Instagram: https://instagram.com/jacobfuckingjones/ My Book, Merch, and Other Socials: http://jacobfuckingjones.com/ Subscribe to My Second Channel: https://youtube.com/c/jacobdrinkingjones/ PO BOX: # 2664 Timber Dr., Suite # 235 Garner, NC 27529 (po box address is subject to change, please check my 'about' page for the latest info) I do not encourage or condone any products, actions, or behaviors shown in this video. All videos are produced in a safe, professional, and controlled environment. Please do not attempt to replicate any actions performed during the video, all actions are performed by professionals.

    published: 25 May 2023
  • Best Cigarette Promo 1991 - Japan - 最高たばこ [TVCM]

    TV Promo for Japanese Cigarettes circa 1991 staring Takashi Takamoto for Sutaffu Top Knot Detecive is available now on: ALL REGION BLURAY: https://arrowfilms.com/product-detail/top-knot-detective-limited-edition-dual-format/TWFBD044 VOD: https://www.umbrellaent.com.au/on-demand/4162-top-knot-detective-on-demand.html ------ Trailer to the documentary about Takashi Takamoto's tragic life can be found here: https://www.youtube.com/watch?v=5beORpWckUU #whatistopknot

    published: 25 Mar 2017
A puffer’s paradise? Old habits die hard in smoke-friendly Japan • FRANCE 24 English
1:56

A puffer’s paradise? Old habits die hard in smoke-friendly Japan • FRANCE 24 English

  • Order:
  • Duration: 1:56
  • Uploaded Date: 31 May 2023
  • views: 21667
Japan is known for its healthy diet and impressive life expectancy. But it is also a smoker’s paradise. Although the number of smokers has dropped by a third over the last 20 years, more than 17 million Japanese smoke regularly. They are easy to spot in Tokyo’s bars. The authorities are trying to make more public spaces smoke-free, but it is an up-hill struggle. Old habits die hard. And the government holds a large stake in Japan Tobacco, the world’s third-biggest manufacturer of cigarettes. #Japan #smoking #tobacco 🔔 Subscribe to France 24 now: https://f24.my/YTen 🔴 LIVE - Watch FRANCE 24 English 24/7 here: https://f24.my/YTliveEN 🌍 Read the latest International News and Top Stories: https://www.france24.com/en/ Like us on Facebook: https://f24.my/FBen Follow us on Twitter: https://f24.my/TWen Discover the news in pictures on Instagram: https://f24.my/IGen Get the latest top stories on Telegram: https://f24.my/TGen
https://wn.com/A_Puffer’S_Paradise_Old_Habits_Die_Hard_In_Smoke_Friendly_Japan_•_France_24_English
Forge your own path at JTI
0:30

Forge your own path at JTI

  • Order:
  • Duration: 0:30
  • Uploaded Date: 22 Jun 2023
  • views: 50213926
https://wn.com/Forge_Your_Own_Path_At_Jti
JAPAN FARMING .HARVESTING TOBACCO LEAVES @ate bie
7:51

JAPAN FARMING .HARVESTING TOBACCO LEAVES @ate bie

  • Order:
  • Duration: 7:51
  • Uploaded Date: 21 May 2021
  • views: 2814
harvesting tobacco leaves .please watch .like and subscribe thank you@ate bie
https://wn.com/Japan_Farming_.Harvesting_Tobacco_Leaves_Ate_Bie
Japan Tobacco PH boss: Revenue will go down with higher sin taxes | ANC
1:53

Japan Tobacco PH boss: Revenue will go down with higher sin taxes | ANC

  • Order:
  • Duration: 1:53
  • Uploaded Date: 29 May 2019
  • views: 2453
Headstart: "It will be disastrous." Imposing higher taxes on cigarettes does not guarantee that people will stop smoking and revenue may also go down with the rise of smuggling, according to the head of Japan Tobacco International Philippines. To watch more breaking news videos click the link below: https://www.youtube.com/playlist?list=PLgyY1WylJUmgZUQnLkWvSABLLRxAiE_z3 Check out what's trending on the internet! Click the link below: https://www.youtube.com/watch?v=GrXNmNs--A0&list=PLgyY1WylJUmiNASnHYchkIZsdUYgT_TQX For more positive vibes and good news, click the link below: https://www.youtube.com/watch?v=AcVYzJbvV90&list=PLgyY1WylJUmir8pkZENrF1o7C4t2sVwdg Subscribe to the ABS-CBN News channel! - http://bit.ly/TheABSCBNNews Visit our website at http://news.abs-cbn.com Facebook: https://www.facebook.com/abscbnNEWS Twitter: https://twitter.com/abscbnnews Instagram: https://www.instagram.com/abscbnnews #ANC #ABSCBNNews #ANCHeadstart
https://wn.com/Japan_Tobacco_Ph_Boss_Revenue_Will_Go_Down_With_Higher_Sin_Taxes_|_Anc
Buying Cigarettes at a 7/11 in Japan
6:11

Buying Cigarettes at a 7/11 in Japan

  • Order:
  • Duration: 6:11
  • Uploaded Date: 22 May 2023
  • views: 37430
I Vlogged Myself Buying Cigarettes at a Japanese 7/11 Convenience Store. Follow Me on Instagram: https://instagram.com/jacobfuckingjones/ My Book, Merch, and Other Socials: http://jacobfuckingjones.com/ Subscribe to My Second Channel: https://youtube.com/c/jacobdrinkingjones/ PO BOX: # 2664 Timber Dr., Suite # 235 Garner, NC 27529 (po box address is subject to change, please check my 'about' page for the latest info) I do not encourage or condone any products, actions, or behaviors shown in this video. All videos are produced in a safe, professional, and controlled environment. Please do not attempt to replicate any actions performed during the video, all actions are performed by professionals.
https://wn.com/Buying_Cigarettes_At_A_7_11_In_Japan
JTI announces expansion
0:28

JTI announces expansion

  • Order:
  • Duration: 0:28
  • Uploaded Date: 02 Dec 2016
  • views: 689
WSLS 10 at 6
https://wn.com/Jti_Announces_Expansion
How to Smoke with a Traditional Japanese Pipe inside a 300 years old Machiya townhouse in Kyoto
13:10

How to Smoke with a Traditional Japanese Pipe inside a 300 years old Machiya townhouse in Kyoto

  • Order:
  • Duration: 13:10
  • Uploaded Date: 17 Feb 2023
  • views: 318872
Despite having lived in Japan for 10+ years, I never really knew anything about KISERU, traditional Japanese smoking pipe. Luckily I was able to visit the Tanigawa Kiseru shop in Kyoto and learned about the history and culture of Kiseru in Japan. I also couldn't believe that Tanigawa san's shop is one of the few Kiseru shop still standing... Homepage of Tanigawa-san's 300 years old KISERU shop http://www.kiserusenmonten.com/ Homepage of Machiya Day 2023 (Events during 3/4~3/12 ) https://machiyanohi.jp/ #traditionalculture #japaneseculture #machiya #kominka #kyoto #kyotovlog
https://wn.com/How_To_Smoke_With_A_Traditional_Japanese_Pipe_Inside_A_300_Years_Old_Machiya_Townhouse_In_Kyoto
I Went to a JAPANESE SMOKING CAFE, and it was Amazing.
14:28

I Went to a JAPANESE SMOKING CAFE, and it was Amazing.

  • Order:
  • Duration: 14:28
  • Uploaded Date: 25 May 2023
  • views: 614065
I Vlogged Myself Going to a JAPANESE SMOKING CAFE in Harajuku, Tokyo. Follow Me on Instagram: https://instagram.com/jacobfuckingjones/ My Book, Merch, and Other Socials: http://jacobfuckingjones.com/ Subscribe to My Second Channel: https://youtube.com/c/jacobdrinkingjones/ PO BOX: # 2664 Timber Dr., Suite # 235 Garner, NC 27529 (po box address is subject to change, please check my 'about' page for the latest info) I do not encourage or condone any products, actions, or behaviors shown in this video. All videos are produced in a safe, professional, and controlled environment. Please do not attempt to replicate any actions performed during the video, all actions are performed by professionals.
https://wn.com/I_Went_To_A_Japanese_Smoking_Cafe,_And_It_Was_Amazing.
Best Cigarette Promo 1991 - Japan - 最高たばこ [TVCM]
1:06

Best Cigarette Promo 1991 - Japan - 最高たばこ [TVCM]

  • Order:
  • Duration: 1:06
  • Uploaded Date: 25 Mar 2017
  • views: 46469
TV Promo for Japanese Cigarettes circa 1991 staring Takashi Takamoto for Sutaffu Top Knot Detecive is available now on: ALL REGION BLURAY: https://arrowfilms.com/product-detail/top-knot-detective-limited-edition-dual-format/TWFBD044 VOD: https://www.umbrellaent.com.au/on-demand/4162-top-knot-detective-on-demand.html ------ Trailer to the documentary about Takashi Takamoto's tragic life can be found here: https://www.youtube.com/watch?v=5beORpWckUU #whatistopknot
https://wn.com/Best_Cigarette_Promo_1991_Japan_最高たばこ_Tvcm
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
PLAYLIST TIME: 0:00 / 47:33

A puffer’s paradise? Old habits die hard in smoke-friendly Japan • FRANCE 24 English

Japan is known for its healthy diet and impressive life expectancy. But it is also a smoker’s paradise. Although the number of smokers has dropped by a third over the last 20 years, more than 17 million Japanese smoke regularly. They are easy to spot in Tokyo’s bars. The authorities are trying to make more public spaces smoke-free, but it is an up-hill struggle. Old habits die hard. And the government holds a large stake in Japan Tobacco, the world’s third-biggest manufacturer of cigarettes. #Japan #smoking #tobacco 🔔 Subscribe to France 24 now: https://f24.my/YTen 🔴 LIVE - Watch FRANCE 24 English 24/7 here: https://f24.my/YTliveEN 🌍 Read the latest International News and Top Stories: https://www.france24.com/en/ Like us on Facebook: https://f24.my/FBen Follow us on Twitter: https://f24.my/TWen Discover the news in pictures on Instagram: https://f24.my/IGen Get the latest top stories on Telegram: https://f24.my/TGen
1:56
A puffer’s paradise? Old habits die hard in smoke-friendly Japan • FRANCE 24 English
Japan is known for its healthy diet and impressive life expectancy. But it is also a smoke...
published: 31 May 2023
Play in Full Screen
0:30
Forge your own path at JTI
published: 22 Jun 2023
Play in Full Screen
7:51
JAPAN FARMING .HARVESTING TOBACCO LEAVES @ate bie
harvesting tobacco leaves .please watch .like and subscribe thank you@ate bie
published: 21 May 2021
Play in Full Screen
1:53
Japan Tobacco PH boss: Revenue will go down with higher sin taxes | ANC
Headstart: "It will be disastrous." Imposing higher taxes on cigarettes does not guarantee...
published: 29 May 2019
Play in Full Screen
6:11
Buying Cigarettes at a 7/11 in Japan
I Vlogged Myself Buying Cigarettes at a Japanese 7/11 Convenience Store. Follow Me on Ins...
published: 22 May 2023
Play in Full Screen
0:28
JTI announces expansion
WSLS 10 at 6
published: 02 Dec 2016
Play in Full Screen
13:10
How to Smoke with a Traditional Japanese Pipe inside a 300 years old Machiya townhouse in Kyoto
Despite having lived in Japan for 10+ years, I never really knew anything about KISERU, t...
published: 17 Feb 2023
Play in Full Screen
14:28
I Went to a JAPANESE SMOKING CAFE, and it was Amazing.
I Vlogged Myself Going to a JAPANESE SMOKING CAFE in Harajuku, Tokyo. Follow Me on Instag...
published: 25 May 2023
Play in Full Screen
1:06
Best Cigarette Promo 1991 - Japan - 最高たばこ [TVCM]
TV Promo for Japanese Cigarettes circa 1991 staring Takashi Takamoto for Sutaffu Top Knot...
published: 25 Mar 2017
Play in Full Screen
'); } 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: Japan Tobacco

Edit

JTI Appoints Abdallah Simba as General Manager, Nigeria

This Day 07 May 2025
Nigeria . 10 minutes ago. Japan Tobacco International (JTI) has announced the appointment of Abdallah Simba as the new General Manager for its Nigeria operations, effective May 1, 2025 ... Speaking on his new appointment, he said ... .
Edit

Consolidated Financial Results for the Three Months Ended March 31,2025 (Japan Tobacco Inc)

Public Technologies 07 May 2025
JAPAN TOBACCO INC.(Stock Code ... the Tobacco Business ... This was due mainly to a decrease in cash and cash equivalents arising from the payment of cash dividends and tobacco excise tax ... Japan Tobacco Inc.
Edit

Rheumatoid Arthritis Treatment Market Size in 7MM is expected to grow at a decent CAGR ...

GetNews 29 Apr 2025
... Molecular Transport, Horizon Therapeutics, Genosco (Oscotec), Hope Biosciences, Abivax, Mesoblast, Pfizer, Akros Pharma/Japan Tobacco, Pfizer/Philogen, AbbVie, Pfizer, and SynAct Pharma and others.
Edit

PMPM, JTI commend Customs for ₱83.7-million cigarette seizure

Manila Bulletin 28 Apr 2025
(PMPM) and Japan Tobacco International (JTI) lauded the Bureau of Customs (BOC) after the agency seized ₱83.7 million worth of smuggled cigarettes in Bulacan.
Edit

Chronic Hand Eczema Market Expected to rise by 2034, LEO Pharma, Japan Tobacco, Asana Biosciences, ...

GetNews 27 Apr 2025
Several key pharmaceutical companies, including LEO Pharma, Japan Tobacco, Asana Biosciences, and others, are developing novel products to improve the Chronic Hand Eczema treatment outlook ... LEO Pharma/Japan Tobacco ... Japan Tobacco.
Edit

D-Wave Quantum Inc. (NYSE: QBTS) And Japan Tobacco Complete Quantum AI Project Designed To Improve ...

MENA FN 26 Apr 2025
(MENAFN - Investor Brand Network). D-Wave and Japan Tobacco's pharmaceutical division completed a proof-of-concept project aimed at speeding up and improving the design of small molecule ... .
Edit

BOC seizes ₱84 million worth of smuggled cigarettes in Bulacan

Manila Bulletin 25 Apr 2025
Raoul Fernandez, counsel for Japan Tobacco International, added their congratulations to the BOC-CIIS and its officials for the successful seizure of illicit and counterfeit cigarettes in Bocaue, Bulacan.
  • 1
×