function sz(t) {
	a = t.value.split('\n');
	b=3;
	for (x=0;x < a.length; x++) {
		if (a[x].length >= t.cols) b+= Math.floor(a[x].length/t.cols);
	}
	b+= a.length;
	if ((b > '2')&(b <'15')) t.rows = b;
	if (b >'15') t.rows = '15';
}
function sz2(t) {
	a = t.value.split('\n');
	b=2;
	for (x=0;x < a.length; x++) {
		if (a[x].length >= t.cols) b+= Math.floor(a[x].length/t.cols);
	}
	b+= a.length;
	if (b <= '6') t.rows='6';
	if ((b > '6')&(b <'25')) t.rows = b;
	if (b >'25') t.rows = '25';
}
