function MM_effectGrowShrink(targetElement, duration, from, to, toggle, referHeight, growFromCenter, goto)
{
	Spry.Effect.DoGrow(targetElement, {duration: duration, from: from, to: to, toggle: toggle, referHeight: referHeight, growCenter: growFromCenter});
	
	var t = duration+200;
	if(goto != 'start')
	{
		window.setTimeout("document.getElementById('textblock').style.visibility = 'hidden';", duration);
		window.setTimeout("weiter('" + goto + ".php')", t);
	}
}
function weiter(goto, targetElement)
{
		location.href = goto;
}


