// JavaScript Document
function initpage()
{
	timerid = null;
	timerid = setTimeout('weiterleitung()',20000);
}

function weiterleitung()
{
	document.location.href = 'index.php';
}