  //POR GRUPO MANATÍ
  // v2.0
  //Invoca la funcion de actualizacion del estado del banner para IE y Firefox
  if (window.onload)
  {
      var func = window.onload; 
      window.onload = function() 
      {
          //func();
          EstatusAtencionEnLinea();
      }
  }
  else
  {
      window.onload = EstatusAtencionEnLinea;
  }
  
  //Actualiza la imagen del banner y ajusta href 
  function EstatusAtencionEnLinea()
  {
      sRuta = window.parent.location.pathname;
      var sPagina = sRuta.substring(sRuta.lastIndexOf('/') + 1);
      if (sPagina != 'fs_messenger.htm')
      {
          //Chat cerrado
		  document.getElementById('IMG_Chat').src= "images/chat_abrir.png";
		  document.getElementById('A_Chat').href= "fs_messenger.htm";
      }
      else
      {
		  //Chat abierto
          document.getElementById('IMG_Chat').src= "images/chat_cerrar.png";
		  document.getElementById('A_Chat').href= window.parent.frames['fPrincipal'].location.href;
      }
  }