Warning: Cannot modify header information - headers already sent by (output started at /home/krato3/public_html/blog/wp-includes/default-filters.php:197) in /home/krato3/public_html/blog/wp-content/plugins/twitter-tools/twitter-tools.php on line 585
function akttPostTweet() {
var tweet_field = $('aktt_tweet_text');
var tweet_text = tweet_field.value;
if (tweet_text == '') {
return;
}
var tweet_msg = $("aktt_tweet_posted_msg");
var akttAjax = new Ajax.Updater(
tweet_msg,
"http://kratomplateau.com/blog/index.php",
{
method: "post",
parameters: "ak_action=aktt_post_tweet_sidebar&aktt_tweet_text=" + tweet_text,
onComplete: akttSetReset
}
);
tweet_field.value = '';
tweet_field.focus();
$('aktt_char_count').innerHTML = '';
tweet_msg.style.display = 'block';
}
function akttSetReset() {
setTimeout('akttReset();', 2000);
}
function akttReset() {
$('aktt_tweet_posted_msg').style.display = 'none';
}