<!--
function numOnly(i) {
	var t = i.value;
	if(t.length>0) {
		t = t.replace(/[^\d\.]+/g, ''); 
	}
	var s = t.split('.');
	if(s.length>1) {
		s[1] = s[0] + s[1];	
		s.shift(s);
	}
	i.value = s.join('');
}
//-->