Javascript adicionando uma linha nova na table com input text

Olá
Nesse meu html eu conseguir adcionar linhas novas na table, agora
preciso adcionar na segunda td um input para o usuario digitar o nome desejado.

Poderiam me ajudar a fazer isso?

Adiciona linhas

Linha coluna Linha Coluna
 <html>
<HEAD>

<SCRIPT LANGUAGE="JavaScript">
function addRow(id){
	var tbody = document.getElementById
	(id).getElementsByTagName("TBODY")[0];
	var row = document.createElement("TR")
	//cria a primeiro td
	var td1 = document.createElement("TD")
	td1.appendChild(document.createTextNode("Nome"))
	
	
	//cria o segundo td
	var td2 = document.createElement("TD")

	var currentElement = document.createElement("input");
	currentElement.setAttribute("type", "text");
	currentElement.setAttribute("name", "oInput" + id);
	currentElement.setAttribute("id", "oInput" + id);

	td2.appendChild(currentElement);


	row.appendChild(td1);
	row.appendChild(td2);
	tbody.appendChild(row);
}

</script>

</HEAD>


<BODY>

	<a href="javascript:addRow('Tabela')">Adiciona linhas</a>

	<table id="Tabela" cellspacing="0" border="1">
		<tbody>
			<tr>
				<td>Linha coluna</td><td>Linha Coluna</td>
			</tr>
		</tbody>
	</table> 
</bodY>

Acostuma não hein :wink:

como eu pego os valores nesses inputs depois???