function Convert(From,To,SaveIn)
* Function to convert string, using CONVERT(), that exceed 32767 bytes.
*[CONVERT (c) 1993, Andrew McLaughlin. All rights reserved.]
In = SaveIn
Out = ""
loop while len(In) do
   Out := convert(From,To,In[1,32767])
   In = In[32768,len(In)]
repeat
return(Out)
end
