document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.   if Length(IntToStr(tmpszam))>9 then
  2.   begin
  3.     Result:=\'A szám túl nagy\';
  4.     exit;
  5.   end;
  6.  
  7.   tmpint:=tmpszam div 1000000;
  8.   if tmpint<>0 then
  9.   begin
  10.     tmpstr:=tmpstr+szazas(tmpint);  
  11.     if szam mod 1000000 > 0 then tmpstr:=tmpstr+\'millió - \'
  12.     else
  13.     begin
  14.       Result:=tmpstr+\'millió\';
  15.       exit;
  16.     end;
  17.   end;
');