echo "    <td>";
 if (count($localWarnings)) {
     echo "<font color=orange><b>" . $loc->getText("CSVwarning") . "</b>:\n";
     echo "<ul>\n";
     foreach ($localWarnings as $error) {
         if ($error != "") {
             echo "<li>" . $error . "</li>\n";
         }
     }
     echo "</ul>\n";
     echo "</font>\n";
 }
 if ($validate != true) {
     echo "<font color=red><b>" . $loc->getText("CSVerror") . "</b>:\n";
     echo "<ul>\n";
     $error = $biblio->getCallNmbrError();
     if ($error != "") {
         echo "<li>" . $error . "</li>\n";
     }
     foreach ($localErrors as $error) {
         if ($error != "") {
             echo "<li>" . $error . "</li>\n";
         }
     }
     $error = $copy->getBarcodeNmbrError();
     if ($error != "") {
         echo "<li>" . $error . "</li>\n";
     }
     foreach ($biblio->getBiblioFields() as $index => $field) {
         $error = $field->getFieldDataError();
         if ($error != "") {