// ==UserScript==
// @name          SoftPedia Auto-save PM
// @author        Ciuly  
// @namespace     http://www.ciuly.com
// @description   checks the "Add a copy of this message to my sent items folder" checkbox
// @include       http://forum.softpedia.com/index.php?act=Msg&CODE=04
// @include       http://forum.softpedia.com/index.php?act=Msg&CODE=4&MID=*
// @include       http://forum.softpedia.com/index.php?CODE=04&act=Msg&MID=*
// ==/UserScript==

(function(){
  var forms, form;

  forms = document.body.getElementsByTagName("form");
  for (var j=0; j<forms.length; j++){
    form = forms.item(j);
    if ( form.name == "REPLIER" ){
      for (var l=0; l<form.elements.length; l++){
        if (form.elements[l].name == "add_sent"){
          form.elements[l].checked="checked";
          break;
        }
      }
      break;
    }
  }
})();