function gotFocus(nr) {
	if (nr==0) {
		if (document.lf.mglnr.value=='Username') document.lf.mglnr.value = '';
	}
	if (nr==1) {
		document.lf.password1.style.display = 'none';
		document.lf.password2.style.display = 'block';
		document.lf.password2.focus();
	}
	if (nr==2) {
		if (document.sf.search.value=='Suche') document.sf.search.value='';
	}
}

function lostFocus(nr) {
	if (nr==0) {
		if (document.lf.mglnr.value=='') document.lf.mglnr.value = 'Username';
	}
	if (nr==1) {
		if (document.lf.password2.value=='') {
			document.lf.password1.style.display = 'block';
			document.lf.password2.style.display = 'none';
		}
	}
	if (nr==2) {
		if (document.sf.search.value=='') document.sf.search.value='Suche';
	}
}
function showHint() {
	if (hint_action) {
		window.clearTimeout(hint_action);
	}
	document.getElementById('loginHint').style.display = '';
}
function hideHint() {
	hint_action = window.setTimeout("document.getElementById('loginHint').style.display = 'none';", 2000);
}
var hint_action;