<!--
function StateArrayClass()
	{
		this.LabelUSAContStatesArray = new Array('Alabama','Arkansas','Arizona','California','Colorado','Connecticut','District of Columbia','Delaware','Florida','Georgia','Iowa','Idaho','Illinois','Indiana','Kansas','Kentucky','Louisiana','Massachusetts','Maryland','Maine','Michigan','Minnesota','Missouri','Mississippi','Montana','North Carolina','North Dakota','Nebraska','New Hampshire','New Jersey','New Mexico','Nevada','New York','Ohio','Oklahoma','Oregon','Pennsylvania','Rhode Island','South Carolina','South Dakota','Tennessee','Texas','Utah','Virginia','Vermont','Washington','Wisconsin','West Virginia','Wyoming');
		this.ValueUSAContStatesArray = new Array('AL','AR','AZ','CA','CO','CT','DC','DE','FL','GA','IA','ID','IL','IN','KS','KY','LA','MA','MD','ME','MI','MN','MO','MS','MT','NC','ND','NE','NH','NJ','NM','NV','NY','OH','OK','OR','PA','RI','SC','SD','TN','TX','UT','VA','VT','WA','WI','WV','WY');
		this.LabelUSANonContStatesArray = new Array('Alaska','American Samoa','Guam','Hawaii','Puerto Rico','Virgin Islands (U.S.)');
		this.ValueUSANonContStatesArray = new Array('AK','American Samoa','Guam','Hawaii','Puerto Rico','Virgin Islands (U.S.)');
		this.LabelUSAMilitaryArray = new Array('Armed Forces Americas','Armed Forces Europe','Armed Forces Pacific');
		this.ValueUSAMilitaryArray = new Array('AA','AE','AP');
		this.LabelCanadianProvinceArray = new Array('Alberta','British Columbia','Manitoba','New Brunswick','Newfoundland and Labrador','Nova Scotia','Northwest Territories','Nunavut','Ontario','Prince Edward Island','Quebec','Saskatchewan','Yukon Territory');
		this.ValueCanadianProvinceArray = new Array('AB','BC','MB','NB','NL','NS','NT','NU','ON','PE','QC','SK','YT');
		this.currentSelectedStateProvince = "USA";
		
		this.setLabelUSAContStatesArray = function(aValue)
			{this.LabelUSAContStatesArray.push(aValue);}
		
		this.setValueUSAContStatesArray = function(aValue)
			{this.ValueUSAContStatesArray.push(aValue);}
		
		this.setLabelCanadianProvinceArray = function(aValue)
			{this.LabelCanadianProvinceArray.push(aValue);}
		
		this.setValueCanadianProvinceArray = function(aValue)
			{this.ValueCanadianProvinceArray.push(aValue);}
			
		this.setCurrentSelectedStateProvince = function(aString)
			{this.currentSelectedStateProvince = aString;}
		
		this.getLabelUSAContStatesArray = function()
			{return this.LabelUSAContStatesArray;}
		
		this.getValueUSAContStatesArray = function()
			{return this.ValueUSAContStatesArray;}
			
		this.getLabelCanadianProvinceArray = function()
			{return this.LabelCanadianProvinceArray;}
		
		this.getValueCanadianProvinceArray = function()
			{return this.ValueCanadianProvinceArray;}
			
		this.getLabelUSANonContStatesArray = function()
			{return this.LabelUSANonContStatesArray;}
		
		this.getValueUSANonContStatesArray = function()
			{return this.ValueUSANonContStatesArray;}
			
		this.getLabelUSAMilitaryArray = function()
			{return this.LabelUSAMilitaryArray;}
		
		this.getValueUSAMilitaryArray = function()
			{return this.ValueUSAMilitaryArray;}
		
		this.getCurrentSelectedStateProvince = function()
			{return this.currentSelectedStateProvince;}
	}
//-->