function Clase_ContenedorPais(){
	   // productos
	   this.beans = new Clase_Vector();
	   this.add = add;
	   this.getBean = getBean;
	   this.getSize = getSize;
}
// Se recupera el directorio i
function getBean(i){
	var obj = new Clase_Pais();
	obj = this.beans.getIndexValue(i);
	return obj;
}

// Añade en la colección un nuevo directorio
function add(bean){
	this.beans.addIndexValue(bean);
}


function getSize(){
	return this.beans.getNumberElements();
}
