/*
global.js                       (c) 2001 CSM GmbH (tw)

Some globally used functions

*/


// --- Display Copyright-note

function printcr()
{
    document.write('&copy; 2006 CSM GmbH; <small>');
    if (document.URL.indexOf('/d/')<0) {
        document.write('last updated ');
    } else {
        document.write('letzte Aktualisierung: ');
    };
    document.write('2006-10-18</small>');
};



// -- Display text in status line

function statustext(txt)
{
    window.status = txt;
    return true;
};




// -- Auto-Click on link with ID autoclick

function autodownload()
{
    if (document.layers) {
        ; // Dunno how to do this with NetScape ...
    } else {
        setTimeout("document.all.autoclick.click();", 1000);
    }
}


// --- end

