// JavaScript Document
function checkval(obj){
	reg = /[^0-9.,]/g;
	obj.value =  obj.value.replace(reg,"");

 }

