// Start numerals & decimals only script
	function disableKey_decimal(e) 
		{var key; 
			if(window.event) 
	          key = window.event.keyCode;     //IE 
	     	else 
	          key = e.which;     //firefox 
	  		if((key  < 46 || key > 57)) 
	          return false; 
	     	else 
	          return true; 
		} 
// End numerals & decimals only script