
function replyto(id, to) {
        jQuery("textarea[name='comment']").val("<a href='#comment-" + id + "'>@" + to + "</a> - " + jQuery("textarea[name='comment']").val()).focus(); 
    }

function quote(id, by, text) {
    jQuery("textarea[name='comment']").val("<blockquote><a href='#comment-" + id + "'>" + originallypostedby + by + "</a>&nbsp;<br />" + text + "</blockquote>\r\n" + jQuery("textarea[name='comment']").val()).focus(); 
}

function addem(em) {
        jQuery("textarea[name='comment']").val(jQuery("textarea[name='comment']").val() + " " + em + " ").focus(); 
    }

function addsym(sym) {
        jQuery("textarea[name='comment']").val(jQuery("textarea[name='comment']").val() + sym).focus(); 
    }
