index.php 6.37 KB
<? 
    include("php/base.inc");
    $menucl=new base();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
    <HEAD>
        <TITLE>steffers.org</TITLE>

        <META name="keywords" lang="de" 
            content="Programmierung, programmierung, programmieren, 3D, 3d, 3D-Grafik, 3D-grafik, Grafik, grafik, Java, java, C/C++, C, C++, Dokumentation, Dokumentationen">
        <META name="keywords" lang="en" 
            content="programming, 3D, 3D-graphics, graphics, Java, java, C/C++, C, C++, documentation, documentations">
        <META name="description" lang="de"
            content="Der Anfang einer kompletten Einf&uuml;hrung in C/C++ programmierung. Sie soll alle Aspekte der Programmierung unter C, C++ und Java behandeln und in einer kleine Applikation enden, die den Anfang einer 3D-Engine bildet.">
        <META name="description" lang="en"
            content="The beginning of a complete introduction in C/C++ programming. It should cover all aspects of programming in C, C++ and Java and result in a small application, that is the beginning of a small 3D-engine.">

        <META name="author" 
            content="Georg Steffers">
        <META name="robots" 
            content="index,follow">
        <META name="date" 
            content="2001-02-26T23:00:00+01:00">

        <META http-equiv="keywords" 
            content="programming, 3D, 3D-graphics, graphics, Java, java, C/C++, C, C++, documentation, documentations">
        <META http-equiv="description" 
            content="The beginning of a complete introduction in C/C++ programming. It should cover all aspects of programming in C, C++ and Java and result in a small application, that is the beginning of a small 3D-engine.">
        <META http-equiv="Content-Type"
            content="text/html">

        <!--BASE HREF="http://www.steffers.org/smain/"-->
        <BASE HREF="http://localhost/~georg/smain/">

        <LINK rev=made href="mailto:georg@steffers.org">
        <LINK rel="stylesheet" href="css/style.css">

        <script language="JavaScript1.2">
        <!--
            if(navigator.appName=='Netscape' &&
               navigator.appVersion.charAt(0)=='4')
                browser='NS';
            else
            if(navigator.appName=='Microsoft Internet Explorer' &&
               navigator.appVersion.charAt(0)>='4') {
                browser='IE';
                var layers=document.all.tags('DIV');
            }
            else {
                browser='DOM';
                var layers=document.getElementsByTagName('DIV');
            }

            function newWin(url) {
                openWindow = window.open(url,'Webcam','resizable=no,\
                                         scrollbars=auto, menubar=no,\
                                         toolbar=no,location=no,\
                                         width=400,height=300');

                openWindow.moveTo(20,20);
            }

            function tooltip_on(id, num) {
                if(browser=='IE')
                    layers[num].style.visibility='visible';
                else if(browser=='NS')
                    window.document.layers[num].visibility='visible';
                else
                    document.getElementById(id).style.visibility='visible';
            }

            function tooltip_off(id, num) {
                if(browser=='IE')
                    layers[num].style.visibility='hidden';
                else if(browser=='NS')
                    window.document.layers[num].visibility='hidden';
                else
                    document.getElementById(id).style.visibility='hidden';
            }

            function showdir(regexp, regexp2) {
                if(browser=='DOM' || browser=='IE') {
                    for(i=0; i<layers.length; i++) {
                        if(layers[i].id.match(regexp))
                            layers[i].style.display='block';
                        if(layers[i].id.match(regexp2))
                            layers[i].style.display='none';
                    }
                }
                // Problem beim NS 4: layers mit display='none' tauchen nicht in
                // der Liste document.layers auf. Evtl. kann ich im NS auch die
                // DIV-Liste durchgehen...spaeter mal schauen
            }

            function hidedir(regexp, regexp2) {
                if(browser=='DOM' || browser=='IE') {
                    for(i=0; i<layers.length; i++) {
                        if(layers[i].id.match(regexp))
                            layers[i].style.display='none';
                        if(layers[i].id.match(regexp2))
                            layers[i].style.display='block';
                    }
                }
                // Problem beim NS 4: layers mit display='none' tauchen nicht in
                // der Liste document.layers auf. Evtl. kann ich im NS auch die
                // DIV-Liste durchgehen...spaeter mal schauen
            }
        // -->
        </script>
    </HEAD>

    <BODY bgcolor="#FFFFFF">
        <? 
            $url=parse_url($HTTP_REFERER);
            // echo $url["host"]."<br>\n";
        ?>
        <? $menucl->site_header(); ?>

        <TABLE width="770" border="0" cellspacing="0" cellpadding="0">
        <TR>
            <TD width="160" valign="top">
                <? $menucl->menu(); ?>
            </TD>
            <TD width="610" valign="top">
                <TABLE width="610" border="0" cellspacing="0"
                       cellpadding="0">
                <TR>
                    <TD width="610" class="maintopbg">
                        <IMG align="left" src="images/maintop.png"
                             vspace="0" hspace="0" width="388" height="2"></TD>
                </TR>
                </TABLE>
                <TABLE width="610" border="0" cellspacing="0"
                       cellpadding="0">
                <TR>
                    <TD width="15" height="15">
                        <IMG src="images/bow.png" width="15" height="15"></TD>
                    <TD width="595" height="15">&nbsp;</TD>
                </TR>
                <TR>
                    <TD width="15">
                        <IMG SRC="images/trans.gif" width="15" height="1"></TD>
                    <TD width="595" valign="top">
                        <? $menucl->page(); ?></TD>
                </TR>
                </TABLE>
            </TD>
            <TD>&nbsp;</TD>
        </TR>
        </TABLE>
    </BODY>
</HTML>