function isInteger(strValue){
	if (strValue == "") return  false;
	var strLetters = "0123456789";
	var pos;
	for(var intCount = 0;intCount<strValue.length;intCount++)
	{
		pos = strLetters.indexOf(strValue.charAt(intCount));
		if (pos == -1) return false;
	}
	return true;
}