function nothing() {}function random(r1, r2) {  if (r2 > r1) return (Math.round(Math.random()*(r2-r1))+r1);  else return (Math.round(Math.random()*(r1-r2))+r2);}function oe_randomh(r1,r2) {  r3=random(r1,r2)  if (r3>9)    if (r3==10) {s="a"}    else {      if (r3==11) {s="b"}      else {        if (r3==12) {s="c"}        else {          if (r3==13) {s="d"}          else {            if (r3==14) {s="e"}            else {              if (r3==15) {s="f"}            }          }        }      }    }  else {    if (r3<0) {	  s=0  }    else {      s=String(r3)  }  }  return (s)}