//Checks whether the passed parameter is a digit

function isDigit (c)
{
	return ((c >= "0") && (c <= "9"))
}
