function isInteger(i) {
	var IsFound = /^-?\d+$/.test(i);
	return IsFound
}