// ==UserScript==
// @name          SoftPedia Report Avatar
// @author        Ciuly  
// @namespace     http://www.ciuly.com
// @description   reports an avatar on the dedicated thread
// @include       http://forum.softpedia.com/index.php?showtopic=*
// @require       http://www.ciuly.com/greasemonkey/aa_all_common.user.js
// @require       http://www.ciuly.com/greasemonkey/aa_sp_common.user.js
// ==/UserScript==

(function(wnd){

  wnd.ciuly_ReportAvatar = function (uid){
	wnd.ciuly_progress_show();
	wnd.ciuly_progress_log("Posting...");
	var r = wnd.ciuly_reply( 28, 35114, "avatarul http://forum.softpedia.com/index.php?showuser="+uid);
	wnd.ciuly_progress_hide();
	return false;
  };

  function addButton(postid, uname, uid){
    return "&nbsp;<button class=\"button\" name=\"Report Avatar\" title=\"Report avatar in dedicated thread\" onclick=\"return ciuly_ReportAvatar('"+uid+"')\">Report Avatar</button>&nbsp;";
  } 

  if (wnd.ipb_md5_check){
    wnd.ciuly_on_every_post(addButton);
  }

})(window.wrappedJSObject || window);
