twitPosterFilterReplyLinks=function()
{var that=this;$("a").filter(function(){return(($(this).attr('rel')=='nofollow tweetreply')||($(this).attr('rel')=='nofollow tweetretweet'));}).click(function(){var targetFrame=window.parent.iframepostform.document;var replyUrl=$(this).attr('href');var replyStatus=$.url.setUrl(replyUrl).param("status");replyStatus=urldecode(replyStatus)+' ';$('#tweet-textarea',targetFrame).val(replyStatus).focus();in_reply_to_status_id=$.url.setUrl(replyUrl).param("in_reply_to_status_id");if(in_reply_to_status_id){$('#in_reply_to_status_id',targetFrame).val(in_reply_to_status_id);}else{$('#in_reply_to_status_id',targetFrame).val('');}
$('html, body').animate({scrollTop:0},'normal');return false;});};