<!--
	document.write("	<style type=\"text/css\">");
	document.write("		<!--");
	document.write("			.abstand_1 { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");

	document.write("			.menue_1 { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_1:link { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_1:visited { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_1:hover { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#000000; text-decoration:none}");
	document.write("			.menue_1:active { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");

	document.write("			.menue_2 { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_2:link { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_2:visited { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_2:hover { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#000000; text-decoration:none}");
	document.write("			.menue_2:active { font-family: Arial, Helvetica, sans-serif; font-size: 10pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");

	document.write("			.menue_3 { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_3:link { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_3:visited { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_3:hover { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#000000; text-decoration:none}");
	document.write("			.menue_3:active { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");

	document.write("			.menue_4 { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_4:link { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_4:visited { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("			.menue_4:hover { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#000000; text-decoration:none}");
	document.write("			.menue_4:active { font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-style: normal; font-weight: normal; color:#455370; text-decoration:none}");
	document.write("		-->");
	document.write("	</style>");

	function menue_aufbauen()
	{
		var knoten = new Array();
		var dokument_name = window.name;
		var dokument_port = window.location.port;
		var dokument_uebergabe = window.location.search;
		var id_alt = -1

		// ID DES GEWÄHLTEN EINTRAGS ÜBER DIE URL AUSLESEN
		if (dokument_uebergabe.length != 0)
		{
			var parameter = dokument_uebergabe.match(/knoten_id\=([1-9][0-9]*|0)/gi);

			if (parameter)
			{
				id_alt = parseInt(parameter[0].substring(10, parameter[0].length));
			}
		}

		// KNOTEN FÜR MENÜSTRUKTUR ÜBER DIE URL AUSLESEN
		if (dokument_uebergabe.length != 0)
		{
			var parameter = dokument_uebergabe.match(/knoten\=([1-9][0-9]*|0)(_[1-9][0-9]*)*/gi);

			if (parameter)
			{
				knoten = parameter[0].substring(7, parameter[0].length).split("_");
			}
		}

		// NAME DES MENÜS ÜBER DIE URL AUSLESEN
		if (dokument_uebergabe.length != 0)
		{
			var parameter = dokument_uebergabe.match(/menue\=(_[a-z0-9]|[a-z0-9])+/gi);

			if (parameter)
			{
				menue_name_2 = parameter[0].substring(6, parameter[0].length).toLowerCase();
			}
		}

		// ALLGEMEINE PARAMETER DER SEITE (FÜR WEBSITE ODER FÜR PANSITE CMS)
		if (dokument_port == 81)
		{
			var link_id = 2;
			var trenner = '&';
		}
		else
		{
			var link_id = 1;
			var trenner = '?';
		}

		// ALLGEMEINE PARAMETER DER SEITE (URL DER SEITE OHNE ÜBERGABEWERTE ERFASSEN)
		var dokument_url = window.location.protocol + '//' + window.location.host + window.location.pathname;

		if (dokument_port == 81)
		{
			if (dokument_uebergabe.length != 0)
			{
				var parameter = dokument_uebergabe.match(/id\=[1-9][0-9]*/gi);

				if (parameter)
				{
					dokument_url = dokument_url + '?id=' + parameter[0].substring(3, parameter[0].length);
				}
			}
		}

		// OHNE PARAMETER SEITE IN ALLEN MENÜS SUCHEN (LINK DETECT)
		if (knoten.length == 0)
		{
			if (dokument_port == 81)
			{
				var vergleich = '/site/seiten/showseite.asp?id=0';

				if (dokument_uebergabe.length != 0)
				{
					var parameter = dokument_uebergabe.match(/id\=[1-9][0-9]*/gi);

					if (parameter)
					{
						var vergleich = '/site/seiten/showseite.asp?id=' + parameter[0].substring(3, parameter[0].length);
					}
				}

				for (var zaehler_1 = 0; zaehler_1 < menue.length; zaehler_1++)
				{
					if (menue[zaehler_1][link_id].toLowerCase() == vergleich)
					{
						knoten = menue[zaehler_1][4].split("_");
						menue_name_2 = menue_name_1;
						break;
					}
				}
			}
			else
			{
				var vergleich = window.location.pathname.toLowerCase();

				if (dokument_zusatz.toLowerCase() != vergleich)
				{
					for (var zaehler_1 = 0; zaehler_1 < menue.length; zaehler_1++)
					{
						if (dokument_zusatz.toLowerCase() + menue[zaehler_1][link_id].toLowerCase() == vergleich)
						{
							knoten = menue[zaehler_1][4].split("_");
							menue_name_2 = menue_name_1;
							self.name = 'menue_' + menue_name_1 + '___knoten_' + menue[zaehler_1][4] + '___knoten_id_-1';
							break;
						}
					}
				}
			}
		}

		// OHNE PARAMETER (PARAMETER ÜBER DEN FENSTERNAMEN AUSLESEN)
		if (dokument_port != 81)
		{
			// ID DES GEWÄHLTEN EINTRAGS ÜBER DEN FENSTERNAMEN AUSLESEN
			if (id_alt == -1)
			{
				if (dokument_name.length != 0)
				{
					var parameter = dokument_name.match(/knoten_id_([1-9][0-9]*|0)/gi);

					if (parameter)
					{
						id_alt = parseInt(parameter[0].substring(10, parameter[0].length));
					}
				}
			}

			// KNOTEN FÜR MENÜSTRUKTUR ÜBER DEN FENSTERNAMEN AUSLESEN
			if (knoten.length == 0)
			{
				if (dokument_name.length != 0)
				{
					var parameter = dokument_name.match(/knoten_([1-9][0-9]*|0)(_[1-9][0-9]*)*/gi);

					if (parameter)
					{
						knoten = parameter[0].substring(7, parameter[0].length).split("_");
					}
				}
			}

			// NAME DES MENÜS ÜBER DEN FENSTERNAMEN AUSLESEN
			if (menue_name_2.length == 0)
			{
				if (dokument_name.length != 0)
				{
					var parameter = dokument_name.match(/menue_(_[a-z0-9]|[a-z0-9])+/gi);

					if (parameter)
					{
						menue_name_2 = parameter[0].substring(6, parameter[0].length).toLowerCase();
					}
				}
			}
		}

		// KNOTEN BEI NEUEM MENUE LÖSCHEN
		if (menue_name_1 != menue_name_2)
		{
			knoten.length = 0;
		}

		// MENÜ AUF- UND ZU KLAPPEN
		if (knoten.length > 0)
		{
			var id_neu = parseInt(knoten[knoten.length - 1]);

			if (id_neu == id_alt)
			{
				if (menue[id_neu][link_id].length == 0)
				{
					if (knoten.length == 1)
					{
						knoten.length = 0;
					}
					else
					{
						knoten.pop();
					}
				}
			}
		}

		// KNOTEN IN MENÜSTRUKTUR EINTRAGEN
		if (knoten.length > 0)
		{
			for (var zaehler_1 = 0; zaehler_1 < knoten.length; zaehler_1++)
			{
				var knoten_id = parseInt(knoten[zaehler_1]);

				if (knoten_id < menue.length)
				{
					menue[knoten_id][6] = 1;
					menue[knoten_id][7] = 1;
					var ebene_1 = menue[knoten_id][5] + 1;

					for (var zaehler_2 = knoten_id; zaehler_2 < menue.length - 1; zaehler_2++)
					{
						// ÄNDERUNG: NUR EINTRÄGE DER LETZTEN EBENE SIND SICHTBAR
						// var ebene_2 = menue[zaehler_2 + 1][5];
						var ebene_2 = menue[zaehler_2 + 1][5];
						var ebene_3 = menue[knoten[knoten.length - 1]][5];

						if (ebene_2 < ebene_1)
						{
							break;
						}
						// ÄNDERUNG: NUR EINTRÄGE DER LETZTEN EBENE SIND SICHTBAR
						// if (ebene_2 == ebene_1)
						if (ebene_2 == ebene_1 && ebene_2 == ebene_3)
						{
							menue[zaehler_2 + 1][6] = 1;
						}
					}

					// AUTOMATISCHE WEITERLEITUNG, WENN DER LETZTE EINTRAG EIN ORDNER GEFOLGT VON EINER ANGEHÄNGTEN SEITE IST
					if (zaehler_1 + 1 == knoten.length)
					{
						if (menue[knoten_id][link_id].length == 0)
						{
							if (knoten_id + 1 < menue.length)
							{
								if (menue[knoten_id + 1][link_id].length != 0 && ebene_1 == menue[knoten_id + 1][5])
								{
									if (dokument_port == 81)
									{
										window.location.href = menue[knoten_id + 1][link_id] + trenner + 'Menue=' + menue_name_1 + '&Knoten=' + menue[knoten_id + 1][4] + '&Knoten_ID=-1';
									}
									else
									{
										self.name = 'menue_' + menue_name_1 + '___knoten_' + menue[knoten_id + 1][4] + '___knoten_id_-1';
										window.location.href = dokument_root + dokument_zusatz + menue[knoten_id + 1][link_id] + trenner + 'Menue=' + menue_name_1 + '&Knoten=' + menue[knoten_id + 1][4] + '&Knoten_ID=-1';
									}
								}
							}
						}
					}
				}
			}
		}

		// MENÜSTRUKTUR AUFBAUEN
		document.write("<table width=\"142\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">");
		document.write("<tr>");
		document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"142\" height=\"1\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"142\" height=\"1\" border=\"0\"></td>");
		document.write("</tr>");
		document.write("</table>");

		// SOLL DER ZURÜCK-EINTRAG ANGEZEIGT WERDEN?
		var zurueck = 0;

		for (var zaehler_1 = 0; zaehler_1 < menue.length; zaehler_1++)
		{
			if (menue[zaehler_1][6] == 1)
			{
				if (menue[zaehler_1][5] == 1)
				{
					if (menue[zaehler_1][7] == 1)
					{
						var aktiv = 'menue_2';
						var id_neu = zaehler_1;
					}
					else
					{
						var aktiv = 'menue_1';
						var id_neu = -1;
					}

					document.write("<table width=\"142\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">");
					document.write("<tr>");
					document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"1\" bgcolor=\"#ffffff\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"1\" border=\"0\"></td>");
					document.write("</tr>");
					document.write("<tr>");
					document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"4\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"4\" border=\"0\"></td>");
					document.write("</tr>");

					if (menue[zaehler_1][8] == 1)
					{
						document.write("<tr>");
						document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"30\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"10\" border=\"0\"></td>");
						document.write("</tr>");
						document.write("<tr>");
						document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"1\" bgcolor=\"#ffffff\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"1\" border=\"0\"></td>");
						document.write("</tr>");
						document.write("<tr>");
						document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"4\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"4\" border=\"0\"></td>");
						document.write("</tr>");
					}

					document.write("<tr>");
					document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"21\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"10\" height=\"12\" border=\"0\"></td>");

					if (menue[zaehler_1][link_id].length == 0)
					{
						if (dokument_port == 81)
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"118\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"118\" height=\"4\" border=\"0\"><br><a class=\"" + aktiv + "\" href=\"" + dokument_url + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"_self\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
						else
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"118\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"118\" height=\"2\" border=\"0\"><br><a class=\"" + aktiv + "\" href=\"" + dokument_url + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"_self\" OnClick=\"self.name='menue_" + menue_name_1 + "___knoten_" + menue[zaehler_1][4] + "___knoten_id_" + id_neu + "'\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
					}
					else
					{
						if (dokument_port == 81)
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"118\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"118\" height=\"4\" border=\"0\"><br><a class=\"" + aktiv + "\" href=\"" + menue[zaehler_1][link_id] + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"" + menue[zaehler_1][3] + "\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
						else
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"118\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"118\" height=\"2\" border=\"0\"><br><a class=\"" + aktiv + "\" href=\"" + dokument_root + dokument_zusatz + menue[zaehler_1][link_id] + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"" + menue[zaehler_1][3] + "\" OnClick=\"self.name='menue_" + menue_name_1 + "___knoten_" + menue[zaehler_1][4] + "___knoten_id_" + id_neu + "'\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
					}

					document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"12\" border=\"0\"></td>");
					document.write("</tr>");
					document.write("<tr>");
					document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"6\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"6\" border=\"0\"></td>");
					document.write("</tr>")
					document.write("</table>");

				}
				else
				{
					var links = 0;

					for (var zaehler_2 = 1; zaehler_2 < menue[zaehler_1][5]; zaehler_2++)
					{
						links = links + 0;
					}

					var rechts = 118 - links;

					if (menue[zaehler_1][7] == 1)
					{
						var aktiv = 'menue_4';
						var id_neu = zaehler_1;
					}
					else
					{
						var aktiv = 'menue_3';
						var id_neu = -1;
					}

					// SOLL DER ZURÜCK-EINTRAG ANGEZEIGT WERDEN?
					if (zurueck == 0 && menue[zaehler_1][5] == menue[knoten[knoten.length - 1]][5])
					{
						zurueck = 1;
					}

					if (zurueck == 1 && zaehler_1 + 1 == menue.length)
					{
						zurueck = -1;
					}

					if (zurueck == 1 && menue[zaehler_1 + 1][5] < menue[knoten[knoten.length - 1]][5])
					{
						zurueck = -1;
					}

					document.write("<table width=\"142\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">");
					document.write("<tr>");
					document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"" + links + "\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"" + links + "\" height=\"12\" border=\"0\"></td>");

					if (menue[zaehler_1][link_id].length == 0)
					{
						if (dokument_port == 81)
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"" + rechts + "\" height=\"12\"><a class=\"" + aktiv + "\" href=\"" + dokument_url + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"_self\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
						else
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"" + rechts + "\" height=\"12\"><a class=\"" + aktiv + "\" href=\"" + dokument_url + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"_self\" OnClick=\"self.name='menue_" + menue_name_1 + "___knoten_" + menue[zaehler_1][4] + "___knoten_id_" + id_neu + "'\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
					}
					else
					{
						if (dokument_port == 81)
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"" + rechts + "\" height=\"12\"><a class=\"" + aktiv + "\" href=\"" + menue[zaehler_1][link_id] + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"" + menue[zaehler_1][3] + "\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
						else
						{
							document.write("<td class=\"" + aktiv + "\" align=\"left\" valign=\"middle\" width=\"" + rechts + "\" height=\"12\"><a class=\"" + aktiv + "\" href=\"" + dokument_root + dokument_zusatz + menue[zaehler_1][link_id] + trenner + "Menue=" + menue_name_1 + "&Knoten=" + menue[zaehler_1][4] + "&Knoten_ID=" + id_neu + "\" target=\"" + menue[zaehler_1][3] + "\" OnClick=\"self.name='menue_" + menue_name_1 + "___knoten_" + menue[zaehler_1][4] + "___knoten_id_" + id_neu + "'\" OnFocus=\"status='';return true;\" OnMouseOver=\"status='';return true;\">" + menue[zaehler_1][0] + "</a></td>");
						}
					}

					document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"12\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"12\" border=\"0\"></td>");
					document.write("</tr>");
					document.write("<tr>");
					document.write("<td colspan=3 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"6\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"6\" border=\"0\"></td>");
					document.write("</tr>")
					document.write("</table>");
				}
			}
		}

		document.write("<table width=\"142\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">");
		document.write("<tr>");
		document.write("<td bgcolor=\"#ffffff\" colspan=2 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"1\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"1\" border=\"0\"></td>");
		document.write("</tr>");
		document.write("<tr>");
		document.write("<td colspan=2 class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"2\" height=\"4\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"2\" height=\"4\" border=\"0\"></td>");
		document.write("</tr>");
		document.write("<tr>");
		document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"21\" height=\"18\"><img src=\"" + dokument_root + dokument_zusatz + "Script/Menue/images/leer.gif\" width=\"10\" height=\"18\" border=\"0\"></td>");
		document.write("<td class=\"abstand_1\" align=\"left\" valign=\"middle\" width=\"118\" height=\"18\"><a class=\"" + aktiv + "\" href=\"http://www.ispro.de/\" target=\"_blank\">Powered by ISPro</a></td>");
		document.write("</tr>");
		document.write("</table>");
	}

//-->