

function ppsqft( price, sqft) {
	if ( price != null && price != 0 ) {
		if ( sqft != null && sqft != 0 ) {
			return  (Math.round( (price / sqft) * 100) / 100);
		}
	}
	return "Information not available";
}

