function answerComment(o, fname) {
var html = '';
html += '<form>';
html += '<textarea autofocus>' + fname + ', </textarea>';
html += '</form>';
$(o).append(html);
}
var form = $('form'), formVal = form.val();
form.val('').focus().val(formVal);