+ // -count here is adjustment - 1px for each textarea
+ var split = h - count - this.MinHeight + this.MinTextareasHeight;
+ if (split < this.MinTextareasHeight) split = this.MinTextareasHeight;
+ var new_height = Math.round(split / count) -2;
+
+// alert('h is: '+h+' min height is '+this.MinHeight+' MinTextareasHeight is '+this.MinTextareasHeight+' -> '+split+' to split between '+count+' new height is '+new_height);