function show(num,len,name){ for(var id = 0;id<=9;id++) { var ss=name+id; if(id==num) { document.getElementById(ss).style.display="block"; }else{ document.getElementById(ss).style.display="none"; } } }