
	// Bestimme den Viewport: 
	var fensterWeite, fensterHoehe;
	if (self.innerHeight) { // all except Explorer
		fensterWeite = self.innerWidth;
		fensterHoehe = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		fensterWeite = document.documentElement.clientWidth;
		fensterHoehe = document.documentElement.clientHeight;
	}
	else if (document.body) { // other Explorers
		fensterWeite = document.body.clientWidth;
		fensterHoehe = document.body.clientHeight;
	}
	if (fensterHoehe < 580) {
		// alert(fensterHoehe);
		document.getElementById("unten").className = "relative";
	}