# create a film strip for image directories

for entry in `ls *.jpg` ; do 
	echo -n "<a href=\"../${entry}\" target=\"display\">"
	echo -n "<img src=\"${entry}\" alt=\"\" vspace=\"1\" width=\"64\" height=\"48\" border=\"1\">"
	echo "</a></br>"
done



