var textBox = document.createElement('textarea');
textBox.setAttribute('cols', '14');
textBox.setAttribute('rows', '3');
textBox.setAttribute('id', GetTextBoxID(mainCell));
textBox.setAttribute('onblur', 'ChangeNodeName(' + textBox.id.toString() + ');');
mainCell.appendChild(textBox);