	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// - - Beschreibung:
	// - - Bildlaufleiste
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// - - Version: 18.11.2004
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// - - Aufruf: StartDownMenu(); StopDownMenu();
	// - -         StartUpMenu(); StopDownMenu();
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// - - Parameter:
	// - - name  = Dateiname des Bildes
	// - - path  = Pfad     der Datei
	// - - desc  = Bildbeschreibung (optional)
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	var i=0
	var intGoUp
	var intGoDown
	var MenueHeight = 100
	
	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// Down
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	function GoDown()
	{
		if (i>-MenueHeight)
			{
			i=i-1
			document.all("inner").style.top=i
			}
	}
				
	function StartDownMenu()
	{
		clearInterval(intGoUp)
		intGoDown = setInterval("GoDown()",10)
	}
	
	function StopDownMenu()
	{
		clearInterval(intGoUp)
	}
	
	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// UP
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	
	function GoUp()
	{
		if (i<0)
			{
			i=i+1
			document.all("inner").style.top=i
			}
	}
	
	function StartUpMenu()
	{
		clearInterval(intGoDown)
		intGoUp = setInterval("GoUp()",10)
	}
	
	function StopUpMenu()
	{
		clearInterval(intGoDown)
	}
	
		function ShowPic(pfad, desc)
	{
		document.all("Bild").src = pfad;
		document.all("BildBeschreibung").innerHTML = desc;
	}

	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// Bild anzeigen
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	

	function ShowPic(pfad, desc)
	{
		top.main_text_2.style.display = "none";
		top.bildansicht.style.display = "block";
		
		top.Bild.src = pfad;
		top.BildBeschreibung.innerHTML = "";
		
		if (desc != undefined)
		{
			parent.BildBeschreibung.innerHTML = "Abb.: " + desc;
		}
	}
	
	function ShowLexPic(Grosses_Bild, BotName, NatName, Urheber, Copyright, text)
	{
		top.Grosses_Bild.src 		= Grosses_Bild;		
		top.Link.href				= "details.asp?PIC=" + Grosses_Bild;		
		top.NatName.innerHTML 		= "<b>Name: </b><br />" + NatName;
		top.BotName.innerHTML 		= "<br /><br /><b>Botanischer Name</b>:<br />" + BotName;
		top.Copyrights.innerHTML 	= "Urheber: " + Urheber + "<br />Copyright: " + Copyright;
		top.Text.innerHTML 			= text;
	}

	
	function ClearPic()
	{
		top.Bild.src = "/bilder/pkt/1px_transp.gif";
		top.BildBeschreibung.innerHTML = "";		
		
		top.main_text_2.style.display = "block";
		top.bildansicht.style.display = "none";
	}
	
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	// Browseranpassungen
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
			
	function init_ScrollMenue()
	{		

		if (navigator.userAgent.indexOf("Netscape") != -1){

		}
		
		if (navigator.appName.indexOf("Explorer") != -1 && navigator.userAgent.indexOf("Opera") == -1) {
			document.all("inner").style.margin = -50;
			document.all("outer").style.left = 0;		
		}
		
		if (navigator.userAgent.indexOf("Opera") != -1){

		}
	}