// JavaScript Document

function showKontodaten() {
	document.getElementById('konto_daten').style.display = '';
	document.getElementById('kontoinhaber').className = 'important';
	document.getElementById('bank_name').className = 'important';
	document.getElementById('kontonummer').className = 'important';
	document.getElementById('blz').className = 'important';
	alert ("Bitte geben Sie im unteren Teil der Seite Ihre Kontodaten an und speichern Ihre Daten ab.");
	window.scrollBy(0,5000);
	//document.getElementById('checkbox_agb').className = 'important';
}

function hideKontodaten() {
	document.getElementById('konto_daten').style.display = 'none';
	document.getElementById('kontoinhaber').className = 'not_important';
	document.getElementById('bank_name').className = 'not_important';
	document.getElementById('kontonummer').className = 'not_important';
	document.getElementById('blz').className = 'not_important';	
	//document.getElementById('checkbox_agb').className = 'not_important';
}
