echo "FIN|" . $arTs["ts"] . "|" . $arTs["StatNum"];
         } else {
             echo "STP|" . $arTs["Completed"] . "|" . $arTs["ts"] . "|" . $arTs["StartPoint"] . "|" . $arTs["StatNum"];
         }
     }
 } elseif ($_REQUEST["fcajax"] == "vf") {
     if (!$RIGHT_VERIFY) {
         $APPLICATION->AuthForm(GetMessage("ACCESS_DENIED"));
     }
     if (IntVal($_REQUEST["tm"]) < 5) {
         $_REQUEST["tm"] = 5;
     }
     $collector = new CFileChecker();
     $arTs = array("ts" => IntVal($_REQUEST["ts"]), "Completed" => IntVal($_REQUEST["completed"]), "StartPoint" => $_REQUEST["startpoint"], "MaxExecutionTime" => IntVal($_REQUEST["tm"]));
     $arErrors = array();
     $res = $collector->VerifyCrc(IntVal($_REQUEST["df"]), $_REQUEST["pwd"], $arTs, $arErrors);
     if (Count($arErrors) > 0) {
         echo "ERR|" . Implode("|", $arErrors);
     } else {
         if ($res) {
             echo "FIN|";
             $fl = new CFileCheckerErrorLog();
             $fl->Open();
             $i = 0;
             while ($s = $fl->ReadLine()) {
                 if ($i > 300) {
                     echo GetMessage("MFC1_EXISTS_OTHER_DIF");
                     break;
                 }
                 $arS = Explode("*", $s);
                 echo $arS[1] . " - ";