/*Important Function to blend the tabs in and out*/
function blendoff(idname) {document.getElementById(idname).style.display = 'none';}
function blendon(idname) {document.getElementById(idname).style.display = 'block';}
/*Function for our Tabmenu with 4 Tabs*/
function swichtabs(wert) {
	if (wert=='1'){
	document.getElementById('tablink1').className='tab1 tabactive';
		document.getElementById('tablink2').className='tab2';
	}else if (wert=='2'){
		document.getElementById('tablink1').className='tab1';
		document.getElementById('tablink2').className='tab2 tabactive';
	   
	}
}