function ton(s) {
var x = s.replace(/,/g, ' '), i;
x = x.match(/\S+/g);
for (i=0; i<x.length; i++)
x[i] -= 0;
return x;
}
