function showLogin() {
	if(document.getElementById('login').style.height!='30px')
	{
		document.getElementById('login').style.height='30px';
		document.getElementById('showlogin').style.display='none';
	}
	else
	{
		document.getElementById('login').style.height='0px';
	}
}

function showEntry() {
	
}

function gotolink(ziel) {
	if(confirm('Wirklich löschen?'))
		top.location.href = ziel;
}

