codice:
is_number = function(string)
{
	if (string && !isNaN(Number(string)) && typeof string != 'boolean')
	{
		return true;
	}
		
	return false;
}