// JavaScript Document
function IsInteger(nbr){
return (!isNan(nbr)||(parseInt(nbr,10)<=0));
}
