
numPictures = 6;

function rightPicture() {
  document.write('<a title="Мастерская группа &quot;Эльфы Будущего&quot;" href="http://futurelves.livejournal.com/profile"><img id="right-picture" alt="Мастерская группа &quot;Эльфы Будущего&quot;" src="/images/right/' + Math.floor(Math.random() * numPictures + 1) + '.jpg"></a>');
}

numArticles = 10;

function rightText() {
  num = Math.floor(Math.random() * numArticles + 1);
  i = 0;
  while (++i <= numArticles) {
    document.getElementById('right-block' + i).style.display = (i == num ? 'inline' : 'none');
  }
  document.getElementById('print-right-link').href = ('/print.shtml?' + num);
}
