#!/usr/bin/perl

$DIR = $ENV{'SCRIPT_FILENAME'}; $DIR =~ s/preview.cgi//;
$in=qx!cd $DIR; ls -A1 *.jpg *.gif *.png *.avi!;

@l=split(/\n/,$in);
$out="";
foreach $l1 (@l) {
  @l2 = split(/\./,$l1);
  $img = $l2[0];
  for ($i=1; $i<@l2-1; $i++) { $img = $img . ".$l2[$i]"}
  $img = "icon/" . $img . ".icon.jpg";
  $out .= "<a href=\"$l1\"><img src=\"$img\"></a>\n";
}

print <<EOF ;
Content-type: text/html



<html>
<head>
<title>Formování planet - omezení plynoucí z pozorování a dynamiky malých těles sluneční soustavy</title>
<meta http-equiv="Content-type" content="text/html; charset=iso-8859-2">
</head>
<body>

<a href="http://sirrah.troja.mff.cuni.cz/yarko-site/"><img src="http://sirrah.troja.mff.cuni.cz/yarko-site/images/yarko_site.gif" align="right" border="0"></a>
<h1>Formování planet - omezení plynoucí z pozorování a dynamiky malých těles sluneční soustavy</h1>

<p><hr>

<table>
<tr>
<td valign="top">
Obrázky z&nbsp;geodynamického semináře
<a href="http://geo.mff.cuni.cz">Katedry geofyziky MFF UK</a>
(konaného 25.&nbsp;5.&nbsp;2006).
</td>
<td>
<ul>
<li><a href="./">výpis adresáře</a>
<li>archiv [&nbsp;<a href="../semgeo2006.tar.gz"><tt>semgeo2006.tar.gz</tt></a>,
5.9&nbsp;MB&nbsp;]
</ul>
</td>
</tr>
</table>
<p>
$out

<p><hr></hr>
<h3>Reference:</h3>

<ul>
<li>Beatty, J.&nbsp;K., Petersen, C.&nbsp;C., Chaikin,&nbsp;A. (Eds.)
<em>The New Solar System.</em>
Cambridge: Cambridge University Press, 1999. ISBN&nbsp;0521645875.

<li>Bertotti, B., Farinella, P., Vokrouhlický, D.
<em>Physics of the Solar System.</em>
Dordrecht: Kluwer Academic Publishers, 2003. ISBN&nbsp;1402014287.

<li>Brož, M.
<em>Astronomický kurz (1-3) - Protoplanetární disk, Vznik planet, Planetesimály a embrya.</em>
Povětroň 4/2004, 5/2004, 2/2006;
<a href="http://www.astrohk.cz/ashk/povetron/"><tt>http://www.astrohk.cz/ashk/povetron/</tt></a>.

<li>Brož, M., Vokrouhlický, D., Bottke W.F., Nesvorný, D., Morbidelli, A., Čapek, D.
<em>Non-gravitational forces acting on small bodies.</em>
in: Asteroids, Comets and Meteors, Eds. D. Lazzaro, S. Ferraz-Mello and J. Fernandez, Cambridge University Press, 351-367, 2006.

<li>Chambers, J.&nbsp;E.
<em>Making more terrestrial planets.</em>
Icarus <b>152</b>, 2, 205-224, 2001.

<li>Kokubo, E., Canup, R.&nbsp;M., Ida, S.
<em>Lunar accretion from an impact-generated disk.</em>
in: Origin of the earth and moon, R.M. Canup, K. Righter Eds. Tucson: University of Arizona Press, 145-163, 2000.

<li>de Pater, I., Lissauer, J.&nbsp;J.
<em>Planetary Sciences.</em>
Cambridge: Cambridge University Press, 2001. ISBN&nbsp;0521482194.

<li>Pollack, J.&nbsp;B., Hubickyj, O., Bodenheimer, P., Lissauer, J.J., Podolak, M., Greenzweig, Y.
<em>Formation of the giant planets by concurrent accretion of solids and gas.</em>
Icarus <b>124</b>, 1, 62-85, 1996.

<li>Saumon, D., Guillot, T.
<em>Shock compression of deuterium and the interiors of Jupiter and Saturn.</em>
Astrophys.&nbsp;J. <b>609</b>, 2, 1170-1180, 2004.

<li>Tsiganis, K., Gomes, R., Morbidelli, A., Levison, H.&nbsp;F.
<em>Origin of the orbital architecture of the giant planets of the solar system.</em>
Nature, <b>435</b>, 459, 2004.

<li>Weidenschilling, S.&nbsp;J.
<em>Formation of Planetesimals and Accretion of the Terrestrial Planets.</em>
Space Science Reviews <b>92</b>, 1/2, 295-310, 2000.

<li><em>Yarko-site.</em>
<a href="http://sirrah.troja.mff.cuni.cz/yarko-site/"><tt>http://sirrah.troja.mff.cuni.cz/yarko-site/</tt></a>.

</ul>

<p><hr></hr>
<address>
Miroslav Broz,
<a href="mailto:miroslav.broz\@email.cz">miroslav.broz\@email.cz</a>,
May 25th 2006
</address>
<hr></hr>

</body>
</html>

EOF

exit;


