function Abonnement(id, aboTyp)
{
	this.id = id;
	this.aboTyp = aboTyp;
}

function Country(id, name, easy)
{
	this.id = id;
	this.name = name;
	this.easy = easy;

	
	this.prev = null;
	this.next = null;
}

function Countries()
{
	this.first = null;
	this.last = null;
}

Countries.prototype.add = function (name, vodafoneWorldMember, easy, interworkingZone)
{
	var item = new Country(name, vodafoneWorldMember, easy, interworkingZone);
	
	if (this.first == null)
	{
		this.first = item;
		this.last = item;
	}
	else
	{
		this.last.next = item;
		item.prev = this.last;
		this.last = item;
	}
}

function CountryRecord()
{
	this.refCountry = null;

	this.prev = null;
	this.next = null;
}

function SearchCountries()
{
}

SearchCountries.prototype.add = function(refCountry)
{
	var item = new CountryRecord(refCountry);
	
	if (this.first == null)
	{
		this.first = item;
		this.last = item;
	}
	else
	{
		this.last.next = item;
		item.prev = this.last;
		this.last = item;
	}
}

