// - All - will not be saved
     $oUser->setProperty("itemsperpage", $area . "_job_details", $_REQUEST["elemperpage"]);
 }
 $oFrmOptions = new UI_Table_Form("frmOptions");
 $oFrmOptions->setVar("contenido", $sess->id);
 $oFrmOptions->setVar("area", $area);
 $oFrmOptions->setVar("action", $action);
 $oFrmOptions->setVar("frame", $frame);
 $oFrmOptions->setVar("sortmode", $_REQUEST["sortmode"]);
 $oFrmOptions->setVar("sortby", $_REQUEST["sortby"]);
 $oFrmOptions->setVar("idnewsjob", $_REQUEST["idnewsjob"]);
 //$oFrmOptions->setVar("startpage", $startpage);
 //$oFrmOptions->setVar("appendparameters", $appendparameters);
 $oFrmOptions->addHeader(i18n("List options", $plugin_name));
 $oSelElements = new cHTMLSelectElement("elemperpage");
 $oSelElements->setEvent("onchange", "document.forms.frmOptions.submit();");
 $aData = array("0" => i18n("-All-", $plugin_name), "50" => "50", "100" => "100", "250" => "250", "500" => "500");
 foreach ($aData as $sKey => $sValue) {
     $oOption = new cHTMLOptionElement($sValue, $sKey);
     $oSelElements->addOptionElement($sKey, $oOption);
 }
 $oSelElements->setDefault($_REQUEST["elemperpage"]);
 //$oSelElements->setStyle('border:1px;border-style:solid;border-color:black;');
 $oFrmOptions->add(i18n("Items per page:", $plugin_name), $oSelElements->render());
 // Ouput data
 $oList = new cScrollList(true, "news_job_details");
 $oList->setCustom("idnewsjob", $_REQUEST["idnewsjob"]);
 $oList->setCustom("nextpage", $iNextPage);
 $oList->setCustom("elemperpage", $_REQUEST["elemperpage"]);
 $aCols = array("rcpname", "rcpemail", "", "status", "sent");
 $oList->setHeader(i18n("Recipient", $plugin_name), i18n("E-Mail", $plugin_name), i18n("Type", $plugin_name), i18n("Status", $plugin_name), i18n("Sent", $plugin_name), i18n("Actions", $plugin_name));
                 }
             }
         }
     }
 } else {
     setSystemProperty("newsletter", "newsletter-recipients-plugin", "false");
     // -> Property available in system settings
 }
 $sTagInfoText .= "</div>";
 $sTagInfoHTML .= "</div>";
 $iTplIDArt = 0;
 // Used later for on change event
 if ($oNewsletter->get("type") == "html") {
     $iTplIDArt = $oNewsletter->get("template_idart");
     $oSelTemplate = new cHTMLSelectElement("selTemplate");
     $oSelTemplate->setEvent("change", "askSubmitOnTplChange(this);");
     $aOptions = array("idcat" => $oClientLang->getProperty("newsletter", "html_template_idcat"), "start" => true, "offline" => true, "order" => "title");
     $oTemplateArticles = new ArticleCollection($aOptions);
     $aItems = array();
     $aItems[] = array(0, i18n("-- none --", $plugin_name));
     while ($oArticle = $oTemplateArticles->nextArticle()) {
         $aItems[] = array($oArticle->get("idart"), $oArticle->get("title"));
     }
     $oSelTemplate->autoFill($aItems);
     $oSelTemplate->setDefault($iTplIDArt);
     unset($aItems);
     unset($oArticles);
     unset($oTemplateArticles);
     $oForm->add(i18n("HTML Template", $plugin_name), $oSelTemplate->render() . "&nbsp;" . i18n("Note, that changing the template discards the current html message content", $plugin_name));
     if ($iTplIDArt != 0) {
         $sFrameSrc = $cfgClient[$client]["path"]["htmlpath"] . "front_content.php?changeview=edit&action=con_editart&idart=" . $oNewsletter->get("idart") . "&idcat=" . $oClientLang->getProperty("newsletter", "html_newsletter_idcat") . "&lang=" . $lang . "&contenido=" . $sess->id;