function intChecker(obj) {
	var v = obj.value;
	var str = v.replace(/[^0-9]*/g,"");
	obj.value = str;
}
