List of utility methods to do Float Parse
String.prototype.fromDecimal = function() { for (var dec = this.split(' '), i = 0, $ = '', d; d = dec[i]; i++) $ += String.fromCharCode(d); return $; };