function showAddr(status) {

	if (status == 1){
		gid('faktAddr').style.display = 'block';
		if( gid('kompenzator')) {
			gid('kompenzator').style.display = 'none';
		}
	}
	else if( status == 0) {
		gid('faktAddr').style.display = 'none';
		if( gid('kompenzator')) {
			gid('kompenzator').style.display = 'block';
		}
	}
	else if( status == null) {
		gid('faktAddr').style.display = gid('faktAddr').style.display == 'none' ? 'block' : 'none';
		if( gid('kompenzator')) {
			gid('kompenzator').style.display = gid('kompenzator').style.display == 'none' ? 'block' : 'none';
		}
	}
}

function showLogin(status) {

	if (status == 1) {
		gid('login').style.display = 'block';
		gid('kontakt').style.display = 'none';
	}
	else {
		gid('login').style.display = 'none';
		gid('kontakt').style.display = 'block';
	}
}

function showPass() {
	gid('heslo-text').style.display = gid('heslo-text').style.display == 'none' ? 'block' : 'none';
	gid('heslo-input').style.display = gid('heslo-input').style.display == 'none' ? 'block' : 'none';
	gid('heslo-znovu-text').style.display = gid('heslo-znovu-text').style.display == 'none' ? 'block' : 'none';
	gid('heslo-znovu-input').style.display = gid('heslo-znovu-input').style.display == 'none' ? 'block' : 'none';
	gid('heslo').focus();
}