Deprecated: Assigning the return value of new by reference is deprecated in /customers/borjefrylmark.se/borjefrylmark.se/httpd.www/pakkath/wp-settings.php on line 520
Deprecated: Assigning the return value of new by reference is deprecated in /customers/borjefrylmark.se/borjefrylmark.se/httpd.www/pakkath/wp-settings.php on line 535
Deprecated: Assigning the return value of new by reference is deprecated in /customers/borjefrylmark.se/borjefrylmark.se/httpd.www/pakkath/wp-settings.php on line 542
Deprecated: Assigning the return value of new by reference is deprecated in /customers/borjefrylmark.se/borjefrylmark.se/httpd.www/pakkath/wp-settings.php on line 578
Deprecated: Function set_magic_quotes_runtime() is deprecated in /customers/borjefrylmark.se/borjefrylmark.se/httpd.www/pakkath/wp-settings.php on line 18
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://www.borjefrylmark.se/pakkath/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';
}