function showFrame () {
    df = document.createElement ('div');

    di = document.createElement('img');
    di.src = "bilder/punkt.gif";
    df.appendChild (di);

    dl = document.createElement('a');
    dl.title = 'Startseite';
    dl.href = 'index.php'
    txt = document.createTextNode(' Startseite');
    dl.appendChild( txt );
    df.appendChild (dl);

    dl.style.fontSize = '14px';

    di2 = document.createElement('img');
    di2.src = "bilder/punkt.gif";
    df.appendChild (di2);

    di2.style.position = 'absolute';
    di2.style.top = '20';
    di2.style.left = '0';

    dl2 = document.createElement('a');
    dl2.title = 'Zur Person';
    dl2.href = 'uwe-borg.php'
    txt2 = document.createTextNode(' Zur Person');
    dl2.appendChild( txt2 );
    df.appendChild (dl2);

    dl2.style.position = 'absolute';
    dl2.style.top = '14';
    dl2.style.left = '18';

    di3 = document.createElement('img');
    di3.src = "bilder/punkt.gif";
    df.appendChild (di3);

    di3.style.position = 'absolute';
    di3.style.top = '38';
    di3.style.left = '0';

    dl3 = document.createElement('a');
    dl3.title = 'Veröffentlichungen';
    dl3.href = 'veroeffentlichungen.php'
    txt3 = document.createTextNode(' Veröffentlichungen');
    dl3.appendChild( txt3 );
    df.appendChild (dl3);

    dl3.style.position = 'absolute';
    dl3.style.top = '32';
    dl3.style.left = '18';

    di4 = document.createElement('img');
    di4.src = "bilder/punkt.gif";
    df.appendChild (di4);

    di4.style.position = 'absolute';
    di4.style.top = '56';
    di4.style.left = '0';

    dl4 = document.createElement('a');
    dl4.title = 'Büro';
    dl4.href = 'buero.php'
    txt4 = document.createTextNode(' Büro');
    dl4.appendChild( txt4 );
    df.appendChild (dl4);

    dl4.style.position = 'absolute';
    dl4.style.top = '50';
    dl4.style.left = '18';

    di5 = document.createElement('img');
    di5.src = "bilder/punkt.gif";
    df.appendChild (di5);

    di5.style.position = 'absolute';
    di5.style.top = '74';
    di5.style.left = '0';

    dl5 = document.createElement('a');
    dl5.title = 'Mitarbeiter';
    dl5.href = 'mitarbeiter.php'
    txt5 = document.createTextNode(' Mitarbeiter');
    dl5.appendChild( txt5 );
    df.appendChild (dl5);

    dl5.style.position = 'absolute';
    dl5.style.top = '68';
    dl5.style.left = '18';

    di6 = document.createElement('img');
    di6.src = "bilder/punkt.gif";
    df.appendChild (di6);

    di6.style.position = 'absolute';
    di6.style.top = '92';
    di6.style.left = '0';

    dl6 = document.createElement('a');
    dl6.title = 'Beratung';
    dl6.href = 'beratung.php'
    txt6 = document.createTextNode(' Beratung');
    dl6.appendChild( txt6 );
    df.appendChild (dl6);

    dl6.style.position = 'absolute';
    dl6.style.top = '86';
    dl6.style.left = '18';


    di7 = document.createElement('img');
    di7.src = "bilder/punkt.gif";
    df.appendChild (di7);

    di7.style.position = 'absolute';
    di7.style.top = '110';
    di7.style.left = '0';

    dl7 = document.createElement('a');
    dl7.title = 'Software';
    dl7.href = 'software.php'
    txt7 = document.createTextNode(' Software');
    dl7.appendChild( txt7 );
    df.appendChild (dl7);

    dl7.style.position = 'absolute';
    dl7.style.top = '104';
    dl7.style.left = '18';

    di8 = document.createElement('img');
    di8.src = "bilder/punkt.gif";
    df.appendChild (di8);

    di8.style.position = 'absolute';
    di8.style.top = '128';
    di8.style.left = '0';

    dl8 = document.createElement('a');
    dl8.title = 'Fabrikplanung';
    dl8.href = 'fabrikplanung.php'
    txt8 = document.createTextNode(' Fabrikplanung');
    dl8.appendChild( txt8 );
    df.appendChild (dl8);

    dl8.style.position = 'absolute';
    dl8.style.top = '122';
    dl8.style.left = '18';


    di9 = document.createElement('img');
    di9.src = "bilder/punkt.gif";
    df.appendChild (di9);

    di9.style.position = 'absolute';
    di9.style.top = '146';
    di9.style.left = '0';

    dl9 = document.createElement('a');
    dl9.title = 'Industriebau';
    dl9.href = 'industriebau.php'
    txt9 = document.createTextNode(' Industriebau');
    dl9.appendChild( txt9 );
    df.appendChild (dl9);

    dl9.style.position = 'absolute';
    dl9.style.top = '140';
    dl9.style.left = '19';


    di10 = document.createElement('img');
    di10.src = "bilder/punkt.gif";
    df.appendChild (di10);

    di10.style.position = 'absolute';
    di10.style.top = '164';
    di10.style.left = '0';

    dl10 = document.createElement('a');
    dl10.title = 'Gutachten';
    dl10.href = 'gutachten.php'
    txt10 = document.createTextNode(' Gutachten');
    dl10.appendChild( txt10 );
    df.appendChild (dl10);

    dl10.style.position = 'absolute';
    dl10.style.top = '158';
    dl10.style.left = '19';

    df.style.position = 'absolute';
    df.style.top = '185';
    df.style.left = '940';
    df.style.width = '11em';
    df.style.border = '0px outset gray';
    df.style.color = '58595b';

    document.getElementsByTagName ('body')[0].appendChild (df);
}

window.setTimeout ('showFrame ()', 1 * 1000);


