function text(t) {
	f = window.open("popupText.php?print=1&t=" + t,"Druckformat","width=550,height=550,resizable=yes,scrollbars=yes");
	f.focus();
}

var lastOpen = "";

function oc(id, dontClose, typ) {
	typ = typ == "" ? "inline" : typ;

	if (lastOpen != "" && !dontClose) {
		document.getElementById(lastOpen).style.display = 'none';
	}

	if (document.getElementById(id)) {
		if (id == lastOpen) {
			document.getElementById(id).style.display = 'none';
			id = "";
		} else {
			if (document.getElementById(id).style.display == typ) {
				document.getElementById(id).style.display = 'none';
			} else {
				document.getElementById(id).style.display = 'inline';
			}
		}
	}

	lastOpen	= id;
} 