
function MaxRent(strDutyStation, strHousehold, strBedrooms, strNonFurnished, strFurnished, strCurrency, datDateEffective, blnDependantRate){
	this.DutyStation = strDutyStation;
	this.Household = strHousehold;
	this.Bedrooms = strBedrooms;
	this.NonFurnished = strNonFurnished;
	this.Furnished = strFurnished;
	this.Currency = strCurrency;
	this.DateEffective = datDateEffective;
	this.DependantRate = blnDependantRate;
}
var MaxRents = new Array();
function AddMaxRents(objMaxRents, objMaxRent){
	objMaxRents[MaxRents.length] = objMaxRent;
}
tmp = new MaxRent("Austria, Vienna","SM alone","0","2500","2500","EUR","01/02/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with spouse","0","2500","2500","EUR","01/02/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with 1 child","0","2500","2500","EUR","01/02/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with 2 children","0","2500","2500","EUR","01/02/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with 3 children","0","2900","2900","EUR","01/02/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with 4 children","0","2900","2900","EUR","01/02/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with 5 children","0","2762","2762","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Austria, Vienna","SM with 6 children","0","2762","2762","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Belgium, Brussels","SM alone","0","2500","2500","EUR","01/12/2006 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Belgium, Brussels","SM with spouse","0","2500","2500","EUR","01/12/2006 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Belgium, Brussels","SM with 1 child","0","4000","4000","EUR","01/12/2006 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Belgium, Brussels","SM with 2 children","0","4000","4000","EUR","01/12/2006 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Belgium, Brussels","SM with 3 children","0","5300","5300","EUR","01/12/2006 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Montreal","SM alone","0","1700","1700","CAD","01/07/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Montreal","SM with spouse","0","2300","2300","CAD","01/07/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Montreal","SM with 1 child","0","3200","3200","CAD","01/07/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Montreal","SM with 2 children","0","3200","3200","CAD","01/07/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Montreal","SM with 3 children","0","3450","3450","CAD","01/07/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Montreal","SM with 4 children","0","3750","3750","CAD","01/07/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Ottawa","SM alone","0","1000","1000","CAD","01/01/1997 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Canada, Ottawa","SM with spouse","0","2000","2000","CAD","01/01/1997 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Denmark, Copenhagen","SM alone","0","18000","18000","DKK","01/03/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Denmark, Copenhagen","SM with spouse","0","18000","18000","DKK","01/03/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Denmark, Copenhagen","SM with 1 child","0","20000","20000","DKK","01/03/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Denmark, Copenhagen","SM with 2 children","0","26000","26000","DKK","01/03/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Denmark, Copenhagen","SM with 3 children","0","28000","28000","DKK","01/03/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Denmark, Copenhagen","SM with 4 children","0","31000","31000","DKK","01/03/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM alone","0","1750","1750","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with spouse","0","1750","1750","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with 1 child","0","1950","1950","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with 2 children","0","2150","2150","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with 3 children","0","2350","2350","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with 4 children","0","2550","2550","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with 5 children","0","2750","2750","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("France, Paris","SM with 6 children","0","2950","2950","EUR","01/06/2003 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Germany, Bonn","SM alone","0","1432","1432","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Germany, Bonn","SM with spouse","0","1738","1738","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Germany, Bonn","SM with 1 child","0","1841","1841","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Germany, Bonn","SM with 2 children","0","2147","2147","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Germany, Bonn","SM with 3 children","0","2301","2301","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Greece, Athens","SM alone","0","1614","1614","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Greece, Athens","SM with spouse","0","2348","2348","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Greece, Athens","SM with 1 child","0","2348","2348","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Greece, Athens","SM with 2 children","0","2788","2788","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Greece, Athens","SM with 3 children","0","3522","3522","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM alone","0","650","650","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM with spouse","0","650","650","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM with 1 child","0","650","650","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM with 2 children","0","770","770","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM with 3 children","0","1010","1010","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM with 4 children","0","1350","1350","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Brindisi","SM with 5 children","0","1350","1350","EUR","01/09/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Rome","SM with 4 children","0","2117","2117","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Italy, Rome","SM with 5 children","0","2117","2117","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Netherlands, The Hague","SM alone","0","1611","1611","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Netherlands, The Hague","SM with spouse","0","1611","1611","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Netherlands, The Hague","SM with 1 child","0","2210","2210","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Netherlands, The Hague","SM with 2 children","0","2210","2210","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Netherlands, The Hague","SM with 3 children","0","2723","2723","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Norway, Oslo","SM alone","0","8667","8667","NOK","01/01/2004 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Norway, Oslo","SM with spouse","0","11261","11261","NOK","01/01/2004 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Norway, Oslo","SM with 1 child","0","11261","11261","NOK","01/01/2004 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Norway, Oslo","SM with 2 children","0","14678","14678","NOK","01/01/2004 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Norway, Oslo","SM with 3 children","0","18031","18031","NOK","01/01/2004 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Portugal, Lisbon","SM alone","0","998","998","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Portugal, Lisbon","SM with spouse","0","998","998","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Portugal, Lisbon","SM with 1 child","0","1297","1297","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Portugal, Lisbon","SM with 2 children","0","1746","1746","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Portugal, Lisbon","SM with 3 children","0","1995","1995","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM alone","0","2100","2100","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM with spouse","0","2800","2800","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM with 1 child","0","3500","3500","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM with 2 children","0","4500","4500","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM with 3 children","0","5000","5000","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM with 4 children","0","5000","5000","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Slovakia, Bratislava","SM with 5 children","0","5000","5000","USD","01/01/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Spain, Madrid","SM alone","0","902","902","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Spain, Madrid","SM with spouse","0","902","902","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Spain, Madrid","SM with 1 child","0","1503","1503","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Spain, Madrid","SM with 2 children","0","1953","1953","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Spain, Madrid","SM with 3 children","0","1953","1953","EUR","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM alone","0","2200","2200","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM alone","0","2200","2200","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with spouse","0","2800","2800","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with spouse","0","2800","2800","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 1 child","0","3900","3900","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 1 child","0","3900","3900","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 2 children","0","3900","3900","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 2 children","0","3900","3900","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 3 children","0","4400","4400","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 3 children","0","4400","4400","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 4 children","0","4900","4900","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 4 children","0","4900","4900","CHF","01/01/2005 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 5 children","0","3900","3900","CHF","01/01/1997 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 5 children","0","3900","3900","CHF","01/01/1997 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 6 children","0","3900","3900","CHF","01/01/1997 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("Switzerland, Geneva","SM with 6 children","0","3900","3900","CHF","01/01/1997 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United Kingdom, London","SM alone","0","1010","1010","GBP","01/05/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United Kingdom, London","SM with spouse","0","1010","1010","GBP","01/05/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United Kingdom, London","SM with 1 child","0","1354","1354","GBP","01/05/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United Kingdom, London","SM with 2 children","0","1532","1532","GBP","01/05/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United Kingdom, London","SM with 3 children","0","1815","1815","GBP","01/05/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United Kingdom, London","SM with 4 children","0","2390","2390","GBP","01/05/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM alone","0","2900","2900","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM with spouse","0","4727","4727","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM with 1 child","0","4727","4727","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM with 2 children","0","6500","6500","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM with 3 children","0","7200","7200","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM with 4 children","0","7200","7200","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, New York","SM with 5 children","0","7200","7200","USD","01/04/2007 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, Washington","SM alone","0","3850","3850","USD","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, Washington","SM with spouse","0","3850","3850","USD","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, Washington","SM with 1 child","0","3850","3850","USD","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, Washington","SM with 2 children","0","3850","3850","USD","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, Washington","SM with 3 children","0","3850","3850","USD","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
tmp = new MaxRent("United States of America, Washington","SM with 4 children","0","3850","3850","USD","01/01/2002 00:00:00",false);
AddMaxRents(MaxRents, tmp);
