function $_(eid)
{
	var elem = document.getElementById(eid);
	return elem;
}

function checkFormular()
{
	var deaktiviert = false;
	
	if ($_('von').value == '') {
		deaktiviert = true;
		$_('von').style.backgroundColor = '#ff6666';
	}
	else {
		$_('von').style.backgroundColor = '';
	}
	
	if ($_('bis').value == '') {
		deaktiviert = true;
		$_('bis').style.backgroundColor = '#ff6666';
	}
	else {
		$_('bis').style.backgroundColor = '';
	}
	
	if ($_('personen').value == '' || isNaN($_('personen').value)) {
		deaktiviert = true;
		$_('personen').style.backgroundColor = '#ff6666';
	}
	else {
		$_('personen').style.backgroundColor = '';
	}
	
	if ( ($_('einzelzimmer').value == '' && $_('doppelzimmer').value == '') || isNaN($_('einzelzimmer').value) || isNaN($_('doppelzimmer').value)) {
		deaktiviert = true;
		$_('einzelzimmer').style.backgroundColor = '#ff6666';
		$_('doppelzimmer').style.backgroundColor = '#ff6666';
	}
	else {
		$_('einzelzimmer').style.backgroundColor = '';
		$_('doppelzimmer').style.backgroundColor = '';
	}
	
	
	
	if ($_('vorname').value == '') {
		deaktiviert = true;
		$_('vorname').style.backgroundColor = '#ff6666';
	}
	else {
		$_('vorname').style.backgroundColor = '';
	}
	
	if ($_('nachname').value == '') {
		deaktiviert = true;
		$_('nachname').style.backgroundColor = '#ff6666';
	}
	else {
		$_('nachname').style.backgroundColor = '';
	}
	
	if ($_('strasse').value == '') {
		deaktiviert = true;
		$_('strasse').style.backgroundColor = '#ff6666';
	}
	else {
		$_('strasse').style.backgroundColor = '';
	}
	
	if ($_('ort').value == '') {
		deaktiviert = true;
		$_('ort').style.backgroundColor = '#ff6666';
	}
	else {
		$_('ort').style.backgroundColor = '';
	}
	
	if ($_('land').value == '') {
		deaktiviert = true;
		$_('land').style.backgroundColor = '#ff6666';
	}
	else {
		$_('land').style.backgroundColor = '';
	}

	if ($_('telefon').value == '') {
		deaktiviert = true;
		$_('telefon').style.backgroundColor = '#ff6666';
	}
	else {
		$_('telefon').style.backgroundColor = '';
	}


	if ( ($_('email').value != $_('email2').value) || ($_('email').value == '' && $_('email2').value == '')) {
		deaktiviert = true;
		$_('email').style.backgroundColor = '#ff6666';
		$_('email2').style.backgroundColor = '#ff6666';
	}
	else {
		if ($_('email').value.indexOf('@') == -1 || $_('email').value.indexOf('.') == -1) {
			deaktiviert = true;
			$_('email').style.backgroundColor = '#ff6666';
			$_('email2').style.backgroundColor = '#ff6666';
		}
		else {
			$_('email').style.backgroundColor = '';
			$_('email2').style.backgroundColor = '';
		}
	}
	
	if ($_('personen').value != '' && $_('erwachsene').value > $_('personen').value)
	{
		deaktiviert = true;
		$_('erwachsene').style.backgroundColor = '#ff6666';
	}
	else
	{
		$_('erwachsene').style.backgroundColor = '';
	}
	
	

	if ($_('datenschutz').checked == false) {
		deaktiviert = true;
	}
	
	
	if (isNaN($_('plz').value) || $_('plz').value == '') {
		deaktiviert = true;
		$_('plz').style.backgroundColor = '#ff6666';
	}
	else {
		$_('plz').style.backgroundColor = '';
	}
	
	
	$_('absenden').disabled = deaktiviert;
	if (deaktiviert) {
		return false;
	}
	else {
		return true;
	}
}
