function Business( name, address, city, state, zipCode, latitude, longitude )
{ // Represents a business
	this.name = name;
	this.address = address;
	this.city = city;
	this.state = state;
	this.zipCode = zipCode;
	this.latitude = latitude;
	this.longitude = longitude;
	
	this.getCSZ = function()
	{ // Returns the city, state and ZIP code combined.
		return this.city + ", " + this.state + " " + this.zipCode;
	}
	
	this.getFullAddress = function()
	{
		return this.address + ", " + this.getCSZ();
	}
	
	this.toString = function()
	{
		return this.getFullAddress();
	}
}

// Use this variable in your code by assigning it an instance of the Business class.
var __theBiz = null;

