function replyto(id, to, num) {
        jQuery("textarea[name='comment']").val("<b>RE:</b> <a href='#comment-" + id + "'>" + to + " @ " + num + "</a> - " + jQuery("textarea[name='comment']").val()).focus(); 
    }
function quote(id, by, text, num) {
    jQuery("textarea[name='comment']").val("By <a href='#comment-" + id + "'>" + by + " @ " + num + "</a>:<br/><blockquote>" + text + "</blockquote>\r\n" + jQuery("textarea[name='comment']").val()).focus(); 
}