function add_watch(key){
        do_command_img('forum','&action=add&mode=watch&key='+key);
        alert('The selected topic has been added to your watchlist. You will be notified by mail when new messages are posted here.');
}

function remove_watch(key){
        if(confirm('Remove this topic from your watchlist?')){
                do_command_img('forum','&action=remove&mode=watch&key='+key);
        }
        alert('The selected topic has been removed from your watchlist. You will no longer be notified by mail when new messages are posted here.');
}

function load_page(url,pp){
	do_command_img('forum',url);
	alert('The reply has been deleted. To view the changes, please refresh the page.');
}

function ban_reply(frep_key,logins_key){
	do_command_img('forum','&action=ban&mode=from_topic&key='+frep_key+'&logins_key='+logins_key);
	alert('Reply owner has been banned from this topic and will not be able to post replies here anymore.');
}