Fix function
Fix( number )
Returns the integer portion of a number.
Example
Sub Main
   Dim MySize
   MySize = Fix(4.345)
   Print MySize
End Sub