
function EstateWeb_Objects_Property(){
	this.PropertyReference;
	var otype = new EstateWeb_Objects_PropertyTypes();
	this.PropertyType = otype.Residential;
	this.PropertyAddress;
	this.PropertyFormattedPrice;
	this.PropertyLatitude;
	this.PropertyLongitude;
}

function EstateWeb_Objects_PropertyTypes(){
	this.Residential = 0;
	this.Commercial = 1;
	this.Overseas = 2;
	this.Developments = 3;
}