
MTG_DetailFeatureProfile['floorspace'] = { 'enabled':1, 'label':'Floor space (SqFt)', 'transform':'11860_floorspace', 'narrative':''  };

MTG_DetailFeatureTransforms['11860_floorspace'] = function(input){ return input+' (estimated)'; };


function MTAPI_layout_size_Header(ls,divObj){
	var s = divObj.style;
	s.display = 'none';
	s.left  = 0 + ls['headermargin'];
	s.top   = 0;
	s.width = ls['horizontaldivider'] - ( ls['headermargin'] * 2 );
	s.height= ls['headerheight'];
	s.visibility    = 'visible';
	}

function MTAPI_layout_size_Map(ls,divObj){
	var s = divObj.style;
	s.left  = 0 + ls['mapmargin'] + "px";
	s.top   = 0 + ls['mapmargin'] + "px";
	s.width = 0 + ls['horizontaldivider'] - (ls['mapmargin']*2) + "px";
	s.height= 0 + ls['cliH'] - (ls['footerheight'] + (ls['mapmargin']*2)) + "px";
	s.visibility    = 'visible';
	}

