

function disp() {
  var r = Math.floor(Math.random()*5);
   
  document.getElementById('div'+r).style.display='block';
}


