function sprachwahl(inhalt) {
	if (inhalt==1) {
		sp_deutsch();
	}
	if (inhalt==2) {
		sp_englisch();
	}
	if (inhalt==3) {
		sp_italiano();
	}
	if (inhalt==4) {
		sp_polnisch();
	}
	if (inhalt==5) {
		sp_tschechisch();
	}
	if (inhalt==6) {
		sp_spanisch();
	}
	if (inhalt==7) {
		sp_niederlaendisch();
	}
}
function sp_deutsch() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=deutsch; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
function sp_englisch() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=englisch; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
function sp_italiano() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=italiano; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
function sp_polnisch() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=polnisch; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
function sp_tschechisch() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=tschechisch; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
function sp_spanisch() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=spanisch; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
function sp_niederlaendisch() {
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'sprache=niederlaendisch; expires='+a.toGMTString()+'; path=/;';
	document.location.href=document.location.href;
}
