function random2() {
var x;
var t;
var cad;
t = 21;
x = (t-1) * Math.random() + 1;
x = Math.round(x);
cad = "/img/b" + x + ".gif";
return cad;
 }