document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.   tmpszam:=tmpszam-(tmpint*1000000);
  2.   tmpint:=tmpszam div 1000;
  3.   if tmpint<>0 then
  4.   begin  
  5.     tmpstr:=tmpstr+szazas(tmpint);
  6.     if (szam > 2000) and (tmpszam mod 1000 <> 0) then tmpstr:=tmpstr+\'ezer - \'
  7.     else
  8.     begin
  9.       tmpstr:=tmpstr+\'ezer\';
  10.       if tmpszam mod 1000 = 0 then
  11.       begin
  12.         Result:=tmpstr;
  13.         exit;
  14.       end;  
  15.     end;
  16.   end;
');