תוכן שנמחק תוכן שנוסף
מאין תקציר עריכה
מאין תקציר עריכה
שורה 101:
* [http://knol.google.com/k/tomer-chelouche/-/1d1przeaubp8p/4 המאמר שלי ב-Knol]
* [http://www.facebook.com/home.php?ref=home#/profile.php?id=544813745 הדף שלי ב-FaceBook]
 
function IDValidator(str)
{
var temp = String(str);
if ((temp.length != 9) || (isNaN(temp)))
return false;
var mone = 0, incNum;
for (var i=0; i < 9; i++)
{
incNum = Number(temp.charAt(i));
incNum *= (i%2)+1;
if (incNum > 9)
incNum -= 9;
mone += incNum;
}
return (mone%10 == 0);
}