// Farbwechsel Navigation

var aktuelleSeite = '#8D7247';
var aufSeite = '#DED2BE';
var aktiveSeite = '#E2D8C7';

function tdMouseOver (uebergabe) {
	uebergabe.bgColor = aufSeite;
}

function tdMouseOut (uebergabe) {
	uebergabe.bgColor = aktuelleSeite;
}

function tdMouseClick (uebergabe) {
	uebergabe.bgColor = aktiveSeite;
}


var newWin;

// Aufruf Leserstruktur

function auf (inhalt) {
	newWin=window.open(inhalt,"new","width=400,height=360");
}

function zu () {
	window.close
}

// Aufruf Detailansicht

function auf_detail (inhalt) {
	newWin=window.open(inhalt,"new","width=550,height=570");
}

function zu () {
	window.close;
}

// Aufruf OutDoor

function auf_outdoor (inhalt) {
	newWin=window.open(inhalt,"new","width=550,height=870" );
}

function zu () {
	window.close;
}

// Formulareintraege loeschen

function Reset () {
	for (i=0;i<document.forms[0].elements.length;i++) {
		if (document.forms[0].elements[i].type=="text") {
			document.forms[0].elements[i].value = "";
		}
	}
}


