function validate_numeric( input ) {
	retval = true;
	if (isNaN(input)) {
		retval = false;
	}
	return retval;
}
