//--------------------------------------------------------------------------//
//            --------------------------------------
//                    JavaScript-Anwendung
//            --------------------------------------
//--------------------------------------------------------------------------//


function go()
{
 window.location.href = 'start.html';
}


//automatische Weiterleitung
function wait()
{
 schleife = window.setTimeout('go()',15000);
}

