// ==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
// ==/UserScript==

var forms, form;

forms = document.body.all.tags("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;
  }
}



