function ShowImg(img)
{
  for(i=1;i<=10;i++)
  {
   if(document.getElementById('img'+i))
   {
      document.getElementById('img'+i).className= img==i?'':'noscreen';
      document.getElementById('thumb-img'+i).className= img==i?'selected':'';
   }
  }
}
