   	
  gActivar='0';
  largoMax=2000;

  if ( navigator.appVersion.substring(0,1) >= "3" ) 
  {
    msg00 = new Image(99,35);  msg00.src = "../images/m0.gif" ;
    msg24 = new Image(99,35);  msg24.src = "../images/m24.gif" ;
  }
  
  function valLargo(e) 
  {
    if( gActivar == '1' )
    {			
      changeImg('msg1', 'msg00');
      
      valor = document.theform.sugerencia.value;
      if( valor.length >= largoMax )
      {
        if(!document.all)
        {
          if( valor.length > largoMax )
            document.theform.sugerencia.value = valor.substring(0, largoMax);
  
          if( e.which != 8 )
          {
            changeImg('msg1', 'msg24');
            return false;
          }
          else
          {
            changeImg('msg1', 'msg00') ;
          }
        }
        else
        {
          changeImg('msg1', 'msg24');
          event.keyCode=0;
        }
      }
    }      
  }
  
  function clsMsg() 
  {
    if( event.keyCode == 8 )
      changeImg('msg1', 'msg00');
  }
  
  document.onkeypress=valLargo;
  
  if(!document.all) document.captureEvents(Event.KEYPRESS);
  
  function aLargoMax()
  {
    gActivar='1';			 
  }
  
  function dLargoMax()
  {
    valLargo();
    gActivar='0';
  }

