> On a side note, I was wondering how one can convert an integer to a > float (perhaps to satasfy an overly strict guard)? I didn't see a BIF > for it. Hm...I should probably also go to bed, but here is a quick and dirty way to do it: <Integer> * 1.0 For example: 4 * 1.0 => 4.0 /Tobbe