function add_row() {

		var table, tbody, tr, td, input;

		table = document.getElementById("tooted");
		tbody = table.getElementsByTagName("tbody")[0];

		tr = document.createElement("tr");

		td = document.createElement("td");
		input = document.createElement("input");
		input.type = "text";
		input.name = "t[nimi][]";
		input.size = "45";
		td.appendChild(input);
		tr.appendChild(td);

		td = document.createElement("td");
		input = document.createElement("input");
		input.type = "text";
		input.name = "t[kataloog][]";
		input.size = "15";
		td.appendChild(input);
		tr.appendChild(td);

		td = document.createElement("td");
		td.align = "right";
		input = document.createElement("input");
		input.type = "text";
		input.name = "t[kogus][]";
		input.size = "3";
		td.appendChild(input);
		tr.appendChild(td);

		tbody.appendChild(tr);
}
