function test2(a,b) {var FlagStop=false; if(a.indexOf(b)!=-1) {FlagStop=true; a=a.replace(b,'...'); a=test2(a);//alert(a) } return a; }