 
function DependencyAllowance(strName,fltValue,strComment){ 
	this.Name = strName;
	this.Value = fltValue;
	this.Comment = strComment;
}
var DependencyAllowances = new Array();
function AddDependencyAllowance(objDependencyAllowances, objDependencyAllowance){ 
	objDependencyAllowances[objDependencyAllowances.length] = objDependencyAllowance; 
} 
tmp = new DependencyAllowance("Child P staff",2686,"");
AddDependencyAllowance(DependencyAllowances,tmp);
tmp = new DependencyAllowance("Child GS staff",2083,"");
AddDependencyAllowance(DependencyAllowances,tmp);
tmp = new DependencyAllowance("Child",2879,"Except for the first dependent child of a single, widowed or divorced staff member");
AddDependencyAllowance(DependencyAllowances,tmp);
tmp = new DependencyAllowance("Dependent spouse",3336,"");
AddDependencyAllowance(DependencyAllowances,tmp);
tmp = new DependencyAllowance("Secondary dependant/G",1257,"");
AddDependencyAllowance(DependencyAllowances,tmp);
tmp = new DependencyAllowance("Secondary dependant-P/L",940,"");
AddDependencyAllowance(DependencyAllowances,tmp);
