function AccessPoint(id, lat, long, cat) {
	this.Latitude = lat;
	this.Longitude = long;
	this.APId = id;
	this.PinID = -1;
	this.APName = "";
	this.Description = "";
	this.OwnerName = "";
	this.Address = "";
	this.City = "";
	this.Category = cat;
	this.hasCompleteInfo = false;
	this.Picture = "";
	this.LargePicture = "";
}
