function isNumeric(value) 
{
	return typeof value != "boolean" && value !== null && !isNaN(+ value);
}

