function navi_highlight(k, p, c) {
	if(k != "") {
		//document.getElementById("navk_"+k).className = c;
		document.getElementById("navk_"+k).style.fontWeight = "bold";
	}
	else if(p != "") {
		//document.getElementById("navp_"+p).className = c;
		document.getElementById("navp_"+p).style.fontWeight = "bold";
	}
}
function popup(nr, id) {
	var url, title, h, w;
	switch(nr) {
		case 1:  url = "http://kunden.werbewind.de/tools/cms/popup/passwort_vergessen.php?id=" + id;
		         title = "Passwort";
				 w = 400;
				 h = 150;
		         break;
		default: return false;
	}
	var features = "width=" + w + ",height=" + h;
	features += ",top=" + ((screen.availHeight-h)/2);
	features += ",left=" + ((screen.availWidth-w)/2);
	window.open(url, title, features);
	return true;
}
