/*
AKTUALISIERUNG:
=>portrzahl, aktportr, portrzeigen stehen in Kopfdatei (Specials oben)
HIER NUR Ergaenzung bei neuen Portraits
*/
function bildeinbinden(i)
{
	with (new Ajax(i))
	{
		url = "/portraits/btxt/p" + i + ".txt";
		onSuccess = successHandler;
		onError = errorHandler;
		doRequest();
	}
	function successHandler(txt, xml) {  document.getElementById("pb" + i).innerHTML = txt; }
	function errorHandler(msg) { document.getElementById("fehler").innerHTML = msg; }
}

function portrshow(divnr)
{
	var l = document.getElementById("pl" + divnr);
	var c = document.getElementById("pt" + divnr);
	l.style.color = "#009900";
	(divnr != portrzeigen) ? document.getElementById("nextportr").style.visibility = "hidden" : document.getElementById("nextportr").style.visibility = "visible";
	for (var i = 1; i <= portrzahl; i++)
	{
		if (i != divnr)
		{	
			var divweg = "pt" + i;
			document.getElementById(divweg).style.display = "none";
		}
	}
	c.style.borderColor = "#FFCC99";
	c.style.backgroundColor = "#FFFFE0";
	if (document.getElementById("pt0"))
	{ document.getElementById("pt0").style.backgroundColor = "#FFFFF0"; }
	c.style.display = "block";	
	bildeinbinden(divnr);
}

document.write(' <p style="margin-bottom: 8px; font-style: italic;">Im Heft sind bisher folgende Porträts erschienen – klicken Sie für nähere Informationen bitte auf die Namen:</em><\/p>');
document.write('<div id="portrlinks"><a href="javascript:portrshow(1);" id="pl1">Friedemann Schulz von Thun<\/a>, <a href="javascript:portrshow(2);" id="pl2">Mihaly Csikszentmihalyi<\/a>, <a href="javascript:portrshow(3);" id="pl3">Eva Jaeggi<\/a>, <a href="javascript:portrshow(4);" id="pl4">Dietrich Dörner<\/a>, <a href="javascript:portrshow(5);" id="pl5">Verena Kast<\/a>, <a href="javascript:portrshow(6);" id="pl6">Niels Birbaumer<\/a>, <a href="javascript:portrshow(7);" id="pl7">Wolfgang Prinz<\/a>, <a href="javascript:portrshow(8);" id="pl8">Klaus Dörner<\/a>, <a href="javascript:portrshow(9);" id="pl9">Philip Zimbardo<\/a>, <a href="javascript:portrshow(10);" id="pl10">Paul Baltes<\/a>, <a href="javascript:portrshow(11);" id="pl11">Reinhard Tausch<\/a>, <a href="javascript:portrshow(12);" id="pl12">Christa Rohde-Dachser<\/a>, <a href="javascript:portrshow(13);" id="pl13">Daniel Hell<\/a>, <a href="javascript:portrshow(14);" id="pl14">Hans Jellouschek<\/a>, <a href="javascript:portrshow(15);" id="pl15">Helm Stierlin<\/a>, <a href="javascript:portrshow(16);" id="pl16">Hilarion Petzold<\/a>, <a href="javascript:portrshow(17);" id="pl17">Elsbeth Stern<\/a>, <a href="javascript:portrshow(18);" id="pl18">Tilmann Moser<\/a>, <a href="javascript:portrshow(19);" id="pl19">Otto Kernberg<\/a>, <a href="javascript:portrshow(20);" id="pl20">Marianne Leuzinger-Bohleber<\/a>, <a href="javascript:portrshow(21);" id="pl21">Irvin Yalom<\/a>, <a href="javascript:portrshow(22);" id="pl22">Daniel Kahneman<\/a>, <a href="javascript:portrshow(23);" id="pl23">Ingrid Riedel<\/a>, <a href="javascript:portrshow(24);" id="pl24">Mark Solms<\/a>, <a href="javascript:portrshow(25);" id="pl25">Jürg Willi<\/a><\/div>');
var jsbnwtxt1 = "javascript:einaus('bnw1', 'bnw2', 1)";
document.write('<p id="bnw1"><a href="' + jsbnwtxt1 + '">Bildnachweis einblenden<\/a><\/p>');
/* Bildnachweis ausblenden erfolgt in "/jstxt/bnw_aus.js" */

for (var i = 1; i <= portrzahl; i++)
{
	document.getElementById("portrlinks").style.display = "block";
	if (i != portrzeigen)
	{
		var divweg = "pt" + i;
		document.getElementById(divweg).style.display = "none";
	}
}
if (portrzeigen != 0 &&  portrzeigen <= portrzahl)
{
	document.getElementById("pl" + portrzeigen).style.color = "#009900";
	bildeinbinden(portrzeigen);
}