// Rahmentest, falls Frame ohne Frameset geladen wird
function rahmentest()
{
	if(top.frames.length == 0)
	{
	document.write ('<hr>');
	document.write ('<p align=center>');
	document.write ('Dieser Text ist Bestandteil eines Dokuments mit &quot;Frames&quot;.<br> ');
	document.write ('Bitte <a href="index.html" target="_top"><b>HIER</b></a> klicken, um das vollst&auml;ndige Dokument zu laden!</p>');
	document.write ('<hr>');
    }
}

