//
//   propertyList
//
//   This file contains controls for the property list page.
//
//
    //
    //    Property
    //
    //    Create a database entry with information needed for a property.
    //
    
     function Installation (id, longitude, latitude, SiteId, TypeId) {
        this.id = id 				;    
        this.longitude  = longitude	;
        this.latitude   = latitude		;
		this.SiteId = SiteId ;
		this.TypeId = TypeId ;
    }

    //
    //    Installation.prototype.infoBlock
    //
    //    Create a block of information about the property to be displayed.
    Installation.prototype.infoBlock = function() {
        return (this.SiteId)  ;
    }
