var randomnb=Math.floor(Math.random()*3);

if (randomnb == 0)
{
  document.write("<img width='120' src='e107_images/newspost_images/selfmu.jpg'>");
}
else if (randomnb == 1)
{
  document.write("<img width='120' src='e107_images/newspost_images/van_gogh.png'>");
}
else if (randomnb == 2)
{
  document.write("<img width='120' src='e107_images/newspost_images/no_self.jpg'>");
}


