function recomment(uid, title){
    var cf=jQuery('#comments form');
    cf.attr('action','/comments/post/'+uid+'/');
    cf.find('input[name=title]').val('Re:'+title);
    return true;
}