repeat=0;
function showDS() {
	dsinfo=window.open('','ds','width=800,height=600,status=0,location=0,directories=0,toolbar=0,scrollbars=yes');
	dsinfo.focus();
}
function showTB() {
	width=400;height=600;
	tbinfo=window.open('','tb','width='+width+',height='+height+',status=0,location=0,directories=0,toolbar=0,scrollbars=yes');
	tbinfo.focus();
}
function showIP() {
	width=850;height=600;
	ipinfo=window.open('','ip','width='+width+',height='+height+',status=0,location=0,directories=0,toolbar=0,scrollbars=yes');
	ipinfo.focus();
}
function checkForm() {
	repeat++;
	if(document.forms["data"].teilnbed && document.forms["data"].teilnbed.checked==false && repeat < 2) {
		if(confirm('Bitte füllen Sie das Formular vollständig aus: Fehlende Angaben sind rot markiert.')==true) {
			document.getElementById("desc").style.color = "#ff6666";
			return false;
		} else {
			document.getElementById("desc").style.color = "#ff6666";
			return false;
		}
	}
	return true;
}

