function scroller()
{
	x = document.body.scrollLeft;
	y = document.body.scrollTop;
	step = 2;

	while ((x != 0) || (y != 0)) {
		scroll (x, y);
		step += (step * step / 100);
		x -= step;
		y -= step;
		if (x < 0) x = 0;
		if (y < 0) y = 0;
	} 
	scroll (0, 0);
}

function organigramm() {
var win;
win=window.open("/ueber_uns/organigramm_zoom.html","Organigram","height=700,width=850,left=0,top=0,scrollbars=yes,dependent=yes,status=yes");
}