function plural(n,str1,str2,str5){ var tst = (n%100); if(tst>20) tst =tst %10; if(!tst) return str5; if(tst==1) return str1; if(tst<5) return str2; if(tst>4) return str5; }