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