function smallPic(img)
{
  img.style.display='';
  if ( img.width > 85) img.style.width = 85 + 'px';
  if ( img.height > 80) img.style.height = 80 + 'px';
}

function mediumPic(img)
{
  img.style.display='';
  if ( img.width > 147) img.style.width = 147 + 'px';
  if ( img.height > 139) img.style.height = 139 + 'px';
}