function checkGutschein()
{
	var deaktiviert = false;
	
	if ($_('wert').value == '' || isNaN($_('wert').value)) {
		deaktiviert = true;
		$_('wert').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('wert').style.backgroundColor = '';
	}
	
	if ($_('vorname').value == '') {
		deaktiviert = true;
		$_('vorname').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('vorname').style.backgroundColor = '';
	}
	
	if ($_('name').value == '') {
		deaktiviert = true;
		$_('name').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('name').style.backgroundColor = '';
	}
	
	if ($_('strasse').value == '') {
		deaktiviert = true;
		$_('strasse').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('strasse').style.backgroundColor = '';
	}
	
	if ($_('plz').value == '') {
		deaktiviert = true;
		$_('plz').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('plz').style.backgroundColor = '';
	}
	
	if ($_('ort').value == '') {
		deaktiviert = true;
		$_('ort').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('ort').style.backgroundColor = '';
	}
	
	if ($_('email').value == '') {
		deaktiviert = true;
		$_('email').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('email').style.backgroundColor = '';
	}
	
	
	if ($_('email').value.indexOf('@') == -1 || $_('email').value.indexOf('.') == -1) {
		deaktiviert = true;
		$_('email').style.backgroundColor = '#FFBB99';
	}
	else {
		$_('email').style.backgroundColor = '';
	}
	
	

	if ($_('datenschutz').checked == false) {
		deaktiviert = true;
	}
	
	
	$_('absenden').disabled = deaktiviert;
	if (deaktiviert) {
		return false;
	}
	else {
		return true;
	}
}

