function infraLupaText(idText,idHidden,link){
	var me = this;
	this.Type = 'infraLupaText';
	this.txt = infraGetElementById(idText);
	this.hdn = infraGetElementById(idHidden);
	this.url = link;
	
	this.selecionar = function(numLargura,numAltura){
	  
	  if (numLargura==undefined){
	    numLargura = 600;
	  }
	  
	  if (numAltura==undefined){
	    numAltura = 400;
	  }
	  
	  return infraAbrirJanela(me.url,'infraJanelaSelecao',numLargura,numAltura,'location=0,status=1,resizable=1,scrollbars=1');  
	  
	}
	
  this.remover = function (){
    if (me.processarRemocao()){
      me.txt.value = '';
      me.hdn.value = '';
    }
  }
	
	me.processarSelecao = function(item){return true;}
	me.processarRemocao = function(){return true;}
	me.finalizarSelecao = function() {}
}