/* Ein Element nach ID anzeigen */

function showElement(id) {
	e = crossGetObject(id);
	if (e == null) return;
	crossShowObject(e);
}
/* Ein Element nach ID verbergen */
function hideElement(id) {
	e = crossGetObject(id);
	if (e == null) return;
	crossHideObject(e);
}

function switchDisplay(id) {
	e = crossGetObject(id);
	if (e == null) {
		return;
	}
	if (e.style.display=='none') {
		e.style.display='block';
	} else {
		e.style.display='none';	
	}
}
