
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~                                                                                      ~~~~
~~~~ Please note the following:                                                           ~~~~
~~~~                                                                                      ~~~~
~~~~ © Elmar Eigner, open-eye                                                             ~~~~  
~~~~ any usage of this script is prohibited by international copyright law!               ~~~~
~~~~ do not remove this copyright mark!                                                   ~~~~
~~~~                                                                                      ~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */


var altdivtxt = Array();
var altheight = Array();
function divaction(welche,divindex,art) {
	if (document.layers)	{
		alert("Leider kann Ihr Browser das nicht...");
		return false;
	}
	mydiv = document.getElementById(welche);
	if ( art == 1 && mydiv.innerHTML == "Klick + zum Öffnen!"  ) 	{
		mydiv.innerHTML = altdivtxt[divindex];
		mydiv.style.height = altheight[divindex];
	}	else if ( art == 2 && mydiv.innerHTML != "Klick + zum Öffnen!" ) 	{
		altdivtxt[divindex] = mydiv.innerHTML;
		altheight[divindex] = mydiv.style.height;
		mydiv.innerHTML = "Klick + zum Öffnen!";
		mydiv.style.height = 'auto';		
	}
	return true;
}
