﻿<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Virtuelle Diashow</title>
    <style type="text/css">
    <!--
        body 
        {
            font-family: Tahoma;
        }
    -->
    </style>
    <script type="text/javascript" src="DiashowConfig.js"></script>
    <script type="text/javascript">
        function Liste() {
            for (i = 0; i < pages.length/2; i++) {
                var s = "<tt>";
                if (i < 10) s = "&nbsp;";
                s += i + "</tt>";
                s += "<span style='font-family:Tahoma'>";
                s += " <a href='javascript:top.SetPage(" + i + ")'>" + pages[2 * i] + "</a>";
                s += "<br/>";
                document.write(s);
            }
        }
    </script>
</head>
<body style="background-color: gray">
</body>
<script type="text/javascript">
    Liste();
</script>
</html>
