function zeigeText(text) {
document.getElementById('meta_navi').value=text;
//document.juravendis.meta_navi.value=text;
}

function versteckeText() {
document.getElementById('meta_navi').value="";
//document.juravendis.meta_navi.value="";
}

// Landingpages
function statusActive(no) {
	var nummer = no;
	// alle anderen Klasse active entziehen
	for(var i = 1; i <= 3; i++) {
		var id_kwick = "kwick_"+i;
		if (!(i==nummer)) {
			document.getElementById(id_kwick).className='';
		}
		else {
			var id_active = "kwick_"+nummer;
			document.getElementById(id_active).className='active';
		}
	}
}

function openContact() {
	document.getElementById('landing_contact').className='landing_contact_active';
}

function hideContact() {
	document.getElementById('landing_contact').className='landing_contact';
}

function checkMandatory() {
if (document.landing_form.user.value == "") {
	document.getElementById('pflichtname').className='showpflicht';
	document.getElementById('pflichtmail').className='pflicht';
	document.landing_form.user.focus();
	return false;
}
if (document.landing_form.telefon.value == "" &&  document.landing_form.email.value == "") {
	document.getElementById('pflichtmail').className='showpflicht';
	document.getElementById('pflichtname').className='pflicht';
	document.landing_form.email.focus();
	return false;
}
}