function show (id) {
	if(id != null) {
		if (document.getElementById(id).style.display == "") document.getElementById(id).style.display = "none";
		else document.getElementById(id).style.display = ""; 
	}
}

function nix(){}

function linkNav(nav){
	navs = new Array('subPerson','subArbeit','subThemen','subService');
	targ = "index.php?navStat=";
	for(i=0; i<navs.length; i++){
		if (document.getElementById(navs[i]).style.display == "") targ = targ.concat("1");
		else targ = targ.concat("0");
	}
	
	targ = targ.concat("&nv="+nav);
	targ = targ.concat("&lg="+jslg);
	window.location.href = targ;
}

function showAndLinks(nav, id){
	show(id);
	linkNav(nav);
}