function inputchk(id, sw, text) {
	if (document.getElementById(id).value == text && sw == 'on') {
		document.getElementById(id).value = '';
	}
	if (document.getElementById(id).value == '' && sw == 'off') {
		document.getElementById(id).value = text;
	}
}

function zeig_mehr(id) {
	if (document.getElementById(id).style.display == 'none') {
		 document.getElementById(id).style.display = 'block';
	} else {
		 document.getElementById(id).style.display = 'none';
		 document.getElementById('detail_datum_von_dd').value = 'TT';
		 document.getElementById('detail_datum_von_mm').value = 'MM';
		 document.getElementById('detail_datum_von_YYYY').value = 'JJJJ';
		 document.getElementById('detail_datum_bis_dd').value = 'TT';
		 document.getElementById('detail_datum_bis_mm').value = 'MM';
		 document.getElementById('detail_datum_bis_YYYY').value = 'JJJJ';
	}
}
