function rand(min,max){return Math.floor(Math.random()*(max-min+1))+min;}; do{ str=rand(1,10); }while(str==1); alert(str)