var resized = 0;
function textboxResize() {
    var textbox = document.getElementById('kontakt-textarea');
    var woerterZeile = 41;
    var textboxValue = textbox.value;
    var textboxRows = Math.ceil(textboxValue.length / woerterZeile);
    if(textboxRows >= 4 && resized == 0) {
	resized = 1;
	textbox.rows = parseInt(textbox.rows) + 1;
    }
    if(textboxRows == 5 && resized == 1) {
	resized = 2;
	textbox.rows = parseInt(textbox.rows) + 1;
    }
    if(textboxRows == 6 && resized == 2) {
	resized = 3;
	textbox.rows = parseInt(textbox.rows) + 1;
    }
}
