﻿function MinPhotoSize(actual, maxvalue) {
	return Math.min(actual, maxvalue) + "px";
}
