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

Jorge Fossati

Jorge Daniel Fossati Lurachi (born 22 November 1952 in Montevideo) is a former Uruguayan footballer and coach who currently manages Qatari club Al Rayyan. He was played as a goalkeeper, mainly in Peñarol. While playing at Peñarol, he helped the club win five league titles. He also had spells in Argentina with Independiente and Rosario Central, in Chile with Green Cross Temuco (currently Deportes Temuco) and with Brazilian team Coritiba.

He played for Mandiyú de Corrientes, of Argentina in 1987 and in 1988, and respectively played for Brazilian clubs Avaí in 1989, and Coritiba in 1990.

Managerial career

Having played as a goalkeeper during his footballing tenure, Fossati states that he had the opportunity to view matches through the perspective of a spectator and the ability to interpret the plays. He began coaching his teammates as a goalkeeper, under the supervision of the coach. As he aged, he started to write analyses of the games and coaches, noting which facets he would have adjusted.

Podcasts:

Famous quotes by Jorge Fossati:

"Argentina are tough opponents but I've got faith in the squad. My players have the talent and determination to overcome any obstacle. I'm sure we're going to win and then finish the job off in the playoff."
"I will carry on with a normal life with the recommendation that one day I have to stop smoking, which was something I already knew."
"Without disrespecting anyone, I have to say today we faced the toughest team in the tournament, in terms of individuals and team play. Whoever we face in the next round will not be a strong as they are."
  • JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024

    JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024. #copaamérica #peruvschile #trome

    published: 20 Jun 2024
  • JORGE FOSSATI habló a un día del debut de la SELECCIÓN PERUANA ante CHILE | CENTRAL USA 🇺🇸🎙️

    Síguenos en Facebook ► https://www.facebook.com/MovistarDeportesPeru/ Síguenos en Twitter ► https://twitter.com/MovistarDeporPe Síguenos en Instagram ► https://www.instagram.com/movistardeportesperu/ Contrata Movistar TV aquí ► smvst.com/mdeportes #MovistarDeportes #CentralUSA #FútbolPeruano #SelecciónPeruana #FPF #Clasificatorias #JorgeFossati #CopaAmérica #CopaAmérica2024 #LaCasaDeLaSelección 🇵🇪🏠

    published: 20 Jun 2024
  • Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América

    Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América #Chile #Perú #CopaAmérica

    published: 20 Jun 2024
  • ¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut!

    ¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut! El técnico de Perú y Chile declararon en conferencia de prensa a poco de verse las caras en el inicio de la Copa América. ¡Juega con la Liga 1 Te Apuesto y vive cada fecha al máximo ➡️ https://bit.ly/3UmzZhl #ESTUDIOFÚTBOL #LIGA1TEAPUESTO

    published: 20 Jun 2024
  • JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! FURIOSO

    JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! FURIOSO FOSSATI TAJANTE CUADRÓ A RICARDO GARECA!! RESPONDE EN CONFERENCIA FURIOSO JORGE FOSSATI EN CONFERENCIA DE PRENSA HOY EN VIVO PALABRAS DEL NONNO FOSSATI HOY PREVIO AL PERU VS CHILE ANALISIS COMPLETO TAJANTE Y CALIENTE ENTREVISTA A FOSSATI HOY VS CHILE PERU VS CHILE CHILE VS PERU PREVIA CALIENTE COPA AMERICA 2024 PERU EN COPA AMERICA 2024 CHILE EN COPA AMERICA 2024 ANALISIS EN CALIENTE HOY ¡CONFERENCIA PICANTE! CUEVA SERÁ TITULAR HOY ANALISIS #JorgeFossati #FuriosoConGareca #PerúvsChile #RicardoGareca #FossatiCuadróAGareca #REspondeCriticas #Analisis #CuevaSeráTitular #FossatiConmovedor #PalabrasEmotivas #Conferenciacaliente #CuadroAGareca #ChilevsPerú #Seleccionchilena #SeleccionPeruana #...

    published: 20 Jun 2024
  • CONFERENCIA de PRENSA de JORGE FOSSATI antes del PERÚ vs CHILE en la COPA AMÉRICA 2024 | Depor

    El entrenador de la #seleccionperuana, #JorgeFossati, habló en #conferenciadeprensa ante los periodistas peruanos y contó las sensaciones del grupo antes del debut en el #PerúvsChile en la #CopaAmérica2024. El entrenador habló sobre el posible 11 titular, las chances del debut de #ChristianCueva y mucho más. ¡Descubre más noticias y mantente actualizado con nosotros! 📰 https://depor.com/ ¡Síguenos en nuestras redes sociales para más contenido! 📘 Facebook: https://bit.ly/494GskH 📸 Instagram: https://bit.ly/3x9fYB2 🎵 TikTok: https://bit.ly/3esOl7t ¡Únete a nuestra comunidad y no te pierdas ni un detalle!

    published: 20 Jun 2024
  • JORGE FOSSATI CONFIRMA QUE RENATO TAPIA NO JUGARÁ LA COPA AMÉRICA 2024: “ES “UNA PENA” | Depor

    El entrenador de la #seleccionperuana, #JorgeFossati, confirmó que #RenatoTapia no será tomado en cuenta para jugar la #CopaAmérica. El entrenador expresó que intentó convencer a Tapia pero no lo logró y será baja de en su equipo. ¡Descubre más noticias y mantente actualizado con nosotros! 📰 https://depor.com/ ¡Síguenos en nuestras redes sociales para más contenido! 📘 Facebook: https://bit.ly/494GskH 📸 Instagram: https://bit.ly/3x9fYB2 🎵 TikTok: https://bit.ly/3esOl7t ¡Únete a nuestra comunidad y no te pierdas ni un detalle!

    published: 12 Jun 2024
  • NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO

    NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO

    published: 20 Jun 2024
  • Jorge Fossati: "Por más veterano que soy, estoy nervioso"

    #ATVNoticias #ATVMas Encuentra más información en www.atv.pe Síguenos en: Facebook: https://www.facebook.com/atvmasnoticias Twitter: https://twitter.com/atvmasnoticias Instagram: https://www.instagram.com/atv.pe https://www.tiktok.com/@atv.pe Web: https://www.atv.pe/envivo-atvmas

    published: 20 Jun 2024
  • ¡Bronca! Fossati y Nunes se dijeron de todo cara a cara en el Cristal vs 'U' por la Liga1

    Los directores técnicos de Sporting Cristal y Universitario de Deportes se dijeron de todo sobre el final del partido en el Estadio Nacional. Según comentaron los periodistas a ras de cancha, Nunes habría hecho un gesto que no le gustó nada a Jorge Fossati. 📲 Suscríbete: https://liga1play.com ¡Suscríbete a nuestro Canal! / @liga1_play Visita nuestro sitio: https://fntz.co/Liga1_Play Twitter: https://twitter.com/Liga1_Play Instagram: https://www.instagram.com/liga1_play/ Facebook: https://www.facebook.com/profile.php?... TikTok: https://www.tiktok.com/@liga1_play @Liga1_Play https://fntz.co/Liga1_Play #futbol #liga1betsson #unaligaparatodos #futbolperuano #liga1play #liga1max #SportingCristal #Universitario #Fossati #TiagoNunes

    published: 17 Sep 2023
developed with YouTube
JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024
28:56

JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024

  • Order:
  • Duration: 28:56
  • Uploaded Date: 20 Jun 2024
  • views: 32879
JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024. #copaamérica #peruvschile #trome
https://wn.com/Jorge_Fossati_En_Conferencia_De_Prensa_Previo_Al_Debut_De_Perú_En_La_Copa_América_2024
JORGE FOSSATI habló a un día del debut de la SELECCIÓN PERUANA ante CHILE | CENTRAL USA 🇺🇸🎙️
4:51

JORGE FOSSATI habló a un día del debut de la SELECCIÓN PERUANA ante CHILE | CENTRAL USA 🇺🇸🎙️

  • Order:
  • Duration: 4:51
  • Uploaded Date: 20 Jun 2024
  • views: 2522
Síguenos en Facebook ► https://www.facebook.com/MovistarDeportesPeru/ Síguenos en Twitter ► https://twitter.com/MovistarDeporPe Síguenos en Instagram ► https://www.instagram.com/movistardeportesperu/ Contrata Movistar TV aquí ► smvst.com/mdeportes #MovistarDeportes #CentralUSA #FútbolPeruano #SelecciónPeruana #FPF #Clasificatorias #JorgeFossati #CopaAmérica #CopaAmérica2024 #LaCasaDeLaSelección 🇵🇪🏠
https://wn.com/Jorge_Fossati_Habló_A_Un_Día_Del_Debut_De_La_Selección_Peruana_Ante_Chile_|_Central_USA_🇺🇸🎙️
Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América
31:02

Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América

  • Order:
  • Duration: 31:02
  • Uploaded Date: 20 Jun 2024
  • views: 27479
Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América #Chile #Perú #CopaAmérica
https://wn.com/Jorge_Fossati_Y_Paolo_Guerrero_I_Previa_Perú_Vs_Chile_I_Conferencia_I_Copa_América
¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut!
1:03:21

¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut!

  • Order:
  • Duration: 1:03:21
  • Uploaded Date: 20 Jun 2024
  • views: 22642
¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut! El técnico de Perú y Chile declararon en conferencia de prensa a poco de verse las caras en el inicio de la Copa América. ¡Juega con la Liga 1 Te Apuesto y vive cada fecha al máximo ➡️ https://bit.ly/3UmzZhl #ESTUDIOFÚTBOL #LIGA1TEAPUESTO
https://wn.com/¡Jorge_Fossati_Y_Ricardo_Gareca_Calientan_El_Debut
JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! FURIOSO
10:29

JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! FURIOSO

  • Order:
  • Duration: 10:29
  • Uploaded Date: 20 Jun 2024
  • views: 6085
JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! FURIOSO FOSSATI TAJANTE CUADRÓ A RICARDO GARECA!! RESPONDE EN CONFERENCIA FURIOSO JORGE FOSSATI EN CONFERENCIA DE PRENSA HOY EN VIVO PALABRAS DEL NONNO FOSSATI HOY PREVIO AL PERU VS CHILE ANALISIS COMPLETO TAJANTE Y CALIENTE ENTREVISTA A FOSSATI HOY VS CHILE PERU VS CHILE CHILE VS PERU PREVIA CALIENTE COPA AMERICA 2024 PERU EN COPA AMERICA 2024 CHILE EN COPA AMERICA 2024 ANALISIS EN CALIENTE HOY ¡CONFERENCIA PICANTE! CUEVA SERÁ TITULAR HOY ANALISIS #JorgeFossati #FuriosoConGareca #PerúvsChile #RicardoGareca #FossatiCuadróAGareca #REspondeCriticas #Analisis #CuevaSeráTitular #FossatiConmovedor #PalabrasEmotivas #Conferenciacaliente #CuadroAGareca #ChilevsPerú #Seleccionchilena #SeleccionPeruana #TitularCueva #ChristianCueva #Debate #ConferenciaHoy #nonoFossati #Lapadula #EduardoVargas #Debate #LaRoja #Blanquirroja #GolViral
https://wn.com/Jorge_Fossati_Cuadró_A_Gareca_Tenso_Clima_Perú_Vs_Chile_Cueva_Es_Titular_Conferencia_Furioso
CONFERENCIA de PRENSA de JORGE FOSSATI antes del PERÚ vs CHILE en la COPA AMÉRICA 2024 | Depor
9:39

CONFERENCIA de PRENSA de JORGE FOSSATI antes del PERÚ vs CHILE en la COPA AMÉRICA 2024 | Depor

  • Order:
  • Duration: 9:39
  • Uploaded Date: 20 Jun 2024
  • views: 22450
El entrenador de la #seleccionperuana, #JorgeFossati, habló en #conferenciadeprensa ante los periodistas peruanos y contó las sensaciones del grupo antes del debut en el #PerúvsChile en la #CopaAmérica2024. El entrenador habló sobre el posible 11 titular, las chances del debut de #ChristianCueva y mucho más. ¡Descubre más noticias y mantente actualizado con nosotros! 📰 https://depor.com/ ¡Síguenos en nuestras redes sociales para más contenido! 📘 Facebook: https://bit.ly/494GskH 📸 Instagram: https://bit.ly/3x9fYB2 🎵 TikTok: https://bit.ly/3esOl7t ¡Únete a nuestra comunidad y no te pierdas ni un detalle!
https://wn.com/Conferencia_De_Prensa_De_Jorge_Fossati_Antes_Del_Perú_Vs_Chile_En_La_Copa_América_2024_|_Depor
JORGE FOSSATI CONFIRMA QUE RENATO TAPIA NO JUGARÁ LA COPA AMÉRICA 2024: “ES “UNA PENA” | Depor
3:31

JORGE FOSSATI CONFIRMA QUE RENATO TAPIA NO JUGARÁ LA COPA AMÉRICA 2024: “ES “UNA PENA” | Depor

  • Order:
  • Duration: 3:31
  • Uploaded Date: 12 Jun 2024
  • views: 16548
El entrenador de la #seleccionperuana, #JorgeFossati, confirmó que #RenatoTapia no será tomado en cuenta para jugar la #CopaAmérica. El entrenador expresó que intentó convencer a Tapia pero no lo logró y será baja de en su equipo. ¡Descubre más noticias y mantente actualizado con nosotros! 📰 https://depor.com/ ¡Síguenos en nuestras redes sociales para más contenido! 📘 Facebook: https://bit.ly/494GskH 📸 Instagram: https://bit.ly/3x9fYB2 🎵 TikTok: https://bit.ly/3esOl7t ¡Únete a nuestra comunidad y no te pierdas ni un detalle!
https://wn.com/Jorge_Fossati_Confirma_Que_Renato_Tapia_No_Jugará_La_Copa_América_2024_“Es_“Una_Pena”_|_Depor
NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO
5:39

NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO

  • Order:
  • Duration: 5:39
  • Uploaded Date: 20 Jun 2024
  • views: 3555
NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO
https://wn.com/Nuevo_11_De_Seleccion_Peruana_Vs_Chile,_Ricardo_Gareca,_Jorge_Fossati_Y_Paolo_Guerrero
Jorge Fossati: "Por más veterano que soy, estoy nervioso"
1:13

Jorge Fossati: "Por más veterano que soy, estoy nervioso"

  • Order:
  • Duration: 1:13
  • Uploaded Date: 20 Jun 2024
  • views: 249
#ATVNoticias #ATVMas Encuentra más información en www.atv.pe Síguenos en: Facebook: https://www.facebook.com/atvmasnoticias Twitter: https://twitter.com/atvmasnoticias Instagram: https://www.instagram.com/atv.pe https://www.tiktok.com/@atv.pe Web: https://www.atv.pe/envivo-atvmas
https://wn.com/Jorge_Fossati_Por_Más_Veterano_Que_Soy,_Estoy_Nervioso
¡Bronca! Fossati y Nunes se dijeron de todo cara a cara en el Cristal vs 'U' por la Liga1
1:16

¡Bronca! Fossati y Nunes se dijeron de todo cara a cara en el Cristal vs 'U' por la Liga1

  • Order:
  • Duration: 1:16
  • Uploaded Date: 17 Sep 2023
  • views: 519778
Los directores técnicos de Sporting Cristal y Universitario de Deportes se dijeron de todo sobre el final del partido en el Estadio Nacional. Según comentaron los periodistas a ras de cancha, Nunes habría hecho un gesto que no le gustó nada a Jorge Fossati. 📲 Suscríbete: https://liga1play.com ¡Suscríbete a nuestro Canal! / @liga1_play Visita nuestro sitio: https://fntz.co/Liga1_Play Twitter: https://twitter.com/Liga1_Play Instagram: https://www.instagram.com/liga1_play/ Facebook: https://www.facebook.com/profile.php?... TikTok: https://www.tiktok.com/@liga1_play @Liga1_Play https://fntz.co/Liga1_Play #futbol #liga1betsson #unaligaparatodos #futbolperuano #liga1play #liga1max #SportingCristal #Universitario #Fossati #TiagoNunes
https://wn.com/¡Bronca_Fossati_Y_Nunes_Se_Dijeron_De_Todo_Cara_A_Cara_En_El_Cristal_Vs_'U'_Por_La_Liga1
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024

JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024. #copaamérica #peruvschile #trome
28:56
JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024
JORGE FOSSATI en CONFERENCIA DE PRENSA previo al debut de Perú en la COPA AMÉRICA 2024. #...
published: 20 Jun 2024
Play in Full Screen
4:51
JORGE FOSSATI habló a un día del debut de la SELECCIÓN PERUANA ante CHILE | CENTRAL USA 🇺🇸🎙️
Síguenos en Facebook ► https://www.facebook.com/MovistarDeportesPeru/ Síguenos en Twitter...
published: 20 Jun 2024
Play in Full Screen
31:02
Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América
Jorge Fossati y Paolo Guerrero I PREVIA Perú Vs Chile I Conferencia I Copa América #Chi...
published: 20 Jun 2024
Play in Full Screen
1:03:21
¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut!
¡Jorge Fossati y Ricardo Gareca CALIENTAN el debut! El técnico de Perú y Chile declararon...
published: 20 Jun 2024
Play in Full Screen
10:29
JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! FURIOSO
JORGE FOSSATI CUADRÓ A GARECA! TENSO CLIMA PERÚ vs CHILE! "CUEVA ES TITULAR" CONFERENCIA! ...
published: 20 Jun 2024
Play in Full Screen
9:39
CONFERENCIA de PRENSA de JORGE FOSSATI antes del PERÚ vs CHILE en la COPA AMÉRICA 2024 | Depor
El entrenador de la #seleccionperuana, #JorgeFossati, habló en #conferenciadeprensa ante l...
published: 20 Jun 2024
Play in Full Screen
3:31
JORGE FOSSATI CONFIRMA QUE RENATO TAPIA NO JUGARÁ LA COPA AMÉRICA 2024: “ES “UNA PENA” | Depor
El entrenador de la #seleccionperuana, #JorgeFossati, confirmó que #RenatoTapia no será to...
published: 12 Jun 2024
Play in Full Screen
5:39
NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO
NUEVO 11 DE SELECCION PERUANA VS CHILE, RICARDO GARECA, JORGE FOSSATI Y PAOLO GUERRERO
published: 20 Jun 2024
Play in Full Screen
1:13
Jorge Fossati: "Por más veterano que soy, estoy nervioso"
#ATVNoticias #ATVMas Encuentra más información en www.atv.pe Síguenos en: Facebook: htt...
published: 20 Jun 2024
Play in Full Screen
1:16
¡Bronca! Fossati y Nunes se dijeron de todo cara a cara en el Cristal vs 'U' por la Liga1
Los directores técnicos de Sporting Cristal y Universitario de Deportes se dijeron de todo...
published: 17 Sep 2023
Play in Full Screen

Jorge Fossati

Jorge Daniel Fossati Lurachi (born 22 November 1952 in Montevideo) is a former Uruguayan footballer and coach who currently manages Qatari club Al Rayyan. He was played as a goalkeeper, mainly in Peñarol. While playing at Peñarol, he helped the club win five league titles. He also had spells in Argentina with Independiente and Rosario Central, in Chile with Green Cross Temuco (currently Deportes Temuco) and with Brazilian team Coritiba.

He played for Mandiyú de Corrientes, of Argentina in 1987 and in 1988, and respectively played for Brazilian clubs Avaí in 1989, and Coritiba in 1990.

Managerial career

Having played as a goalkeeper during his footballing tenure, Fossati states that he had the opportunity to view matches through the perspective of a spectator and the ability to interpret the plays. He began coaching his teammates as a goalkeeper, under the supervision of the coach. As he aged, he started to write analyses of the games and coaches, noting which facets he would have adjusted.

'); } 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: jorge fossati

Edit

Jorge Fossati out as coach of Peru men's national soccer team

Cadillac News 17 Jan 2025
Peru’s soccer federation says Jorge Fossati has left as coach of the men’s national team It says Fossati’s exit came by “mutual agreement." A replacement has not been announced. Peru won just one of six matches in World Cup qualifying ... .
Edit

Peru Sack Jorge Fossati After Failure To Ignite FIFA World Cup 2026 Push

News18 17 Jan 2025
Fossati was hired in December 2023 after Peru had managed just two points from six qualifiers under the guidance of Juan Reynoso ... .
Edit

Soccer-Peru sack coach Fossati amid woeful World Cup qualifying campaign

The Star 17 Jan 2025
(Reuters) - Peru have sacked head coach Jorge Fossati, the Peruvian Football Federation said as the team languish bottom of the CONMEBOL 2026 World Cup Qualifiers standings. Read full story ... .
Edit

Fossati out as Peru coach after WC qualifying woes

Oman Observer 17 Jan 2025
LIMA. Peru sacked Jorge Fossati on Thursday after the veteran coach failed to resuscitate the country's hapless bid to reach the 2026 World Cup finals.Former Uruguay and Qatar ....
Edit

Injured goalkeeper Drake Callender to miss US friendly vs. Venezuela, fourth player dropped

Newsday 17 Jan 2025
FORT LAUDERDALE, Fla.Goalkeeper Drake Callender became the fourth player dropped from the roster for the United States' friendly against Venezuela on Saturday. The U.S ... The U.S ... Jorge Fossati out as coach of Peru men's national soccer team.
Edit

Endrick scores in extra time to help Madrid top Celta in Copa. Titleholder Athletic loses ...

Newsday 17 Jan 2025
Kylian Mbappé and Vinícius Júnior scored a goal in each half but Celta rallied with goals by Jonathan Bamba in the 83rd minute and Marcos Alonso in stoppage time ... “We never give up.” ... Jorge Fossati out as coach of Peru men's national soccer team.
Edit

Jorge Fossati out as coach of Peru men’s national soccer team

Wtop 16 Jan 2025
LIMA, Peru (AP) — Peru’s soccer federation said on Thursday that Jorge Fossati has left as coach of the men’s national team, which won just one of six matches in World Cup ...
Edit

Peru sack Fossati after failure to ignite World Cup push

Yahoo Daily News 16 Jan 2025
Peru sacked Jorge Fossati on Thursday after the veteran coach failed to resuscitate the country's hapless bid to reach the 2026 World Cup finals ... "Jorge Fossati ...
Edit

Ryan Reynolds and Rob McElhenney in group that buys Colombian soccer club La Equidad

Newsday 16 Jan 2025
BOGOTA, ColombiaRyan Reynolds and Rob McElhenney made another foray into soccer team ownership Thursday as part of an investment group that acquired Colombian club La Equidad ... Jorge Fossati out as coach of Peru men's national soccer team ... ....
Edit

Amad Diallo scores late hat trick to rescue Man United in 3-1 win over Southampton

Newsday 16 Jan 2025
Amad Diallo keeps coming up with big late goals for Manchester United ... “In football you have to believe ... That's because Diallo is proving a man for the big occasion ... 16, 2025 ... ___ ... Jorge Fossati out as coach of Peru men's national soccer team.
Edit

European court's opinion in soccer case threatens authority of sports court CAS and FIFA

Newsday 16 Jan 2025
GENEVA — A top European court gave a legal opinion Thursday that risks delivering another defeat to the authority of sports bodies in Switzerland ... More soccer news ... Jorge Fossati out as coach of Peru men's national soccer team ... ....
Edit

CONMEBOL WCQ panic meter: James Rodriguez and Colombia in tricky spot; Brazil at risk after draws

CBS Sports 21 Nov 2024
Now rock bottom with seven points from 12 games, Jorge Fossati's men are currently two points adrift of upwardly mobile Chile as 2024 comes to a close ... clashes crucial for Fossati and his players.
Edit

Argentina vs. Peru lineups, odds: Where to watch CONMEBOL WCQ, live stream, prediction, pick

CBS Sports 19 Nov 2024
Argentina are back in FIFA 2026 World Cup qualifying action on Tuesday with Peru their visitors in Buenos Aires ... The Albiceleste have a three-point cushion at the summit while Jorge Fossati's visitors are five points adrift of even a playoff spot ... .

Most Viewed

×