function makeBigger(direction) {
	var txtarea = document.getElementById('vtx');
	if (direction==1) {
		txtarea.cols = txtarea.cols + 5;
		txtarea.rows = txtarea.rows + 2;
	} else {
		txtarea.cols = txtarea.cols - 5;
		txtarea.rows = txtarea.rows - 2;
	}
	document.getElementById("textarea_next_time").value=txtarea.cols+","+txtarea.rows;
}


function makeLonger(direction, delta) {
	var txtarea = document.getElementById('vtx');
	if (direction==1) {
		txtarea.rows = txtarea.rows + delta;
	} else {
		txtarea.rows = txtarea.rows - delta;
	}
	document.getElementById("textarea_next_time").value=txtarea.cols+","+txtarea.rows;
}

function makeWider(direction, delta) {
	var txtarea = document.getElementById('vtx');
	if (direction==1) {
		txtarea.cols = txtarea.cols + delta;
	} else {
		txtarea.cols = txtarea.cols - delta;
	}
	document.getElementById("textarea_next_time").value=txtarea.cols+","+txtarea.rows;
}


