function druckversion(oLink, id, tmpParams) {
	if (oLink.target != '_blank') {
		oLink.href = '/index.php?id=' + id + tmpParams + '&druckversion=1';
		oLink.target = '_blank';
	}
}

var oContentLast = null;
function contentExpand(contentId) {
	var oContentCurrent = document.getElementById('content_' + contentId);
	
	if (oContentLast && oContentLast != oContentCurrent) {
		oContentLast.className = 'content_expand_hidden';
	}
	
	if (oContentCurrent.className == 'content_expand_hidden') {
		oContentCurrent.className = 'content_expand_visible';
	} else {
		oContentCurrent.className = 'content_expand_hidden';
	}
	
	oContentLast = oContentCurrent;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}