#!/bin/sh

title="Stodola 2010 kv&#283;ten"
resize=$1
otherlink=$2
othername=$3

echo "<h1>$title</h1>"
#echo "<h2><a href='$otherlink'>$othername</a></h2><br>"

for i in `cat list|sort`; do
  echo "<a href='halfsize/$i' target='pic'>"
  echo "<img src='$resize/$i' border=0>"
  echo "</a>"
done

